Skip to content
This repository was archived by the owner on Jun 7, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE.writing.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Except where otherwise noted, this work is licensed under http://creativecommons.org/licenses/by-nd/3.0/
Except where otherwise noted, this work is licensed under https://creativecommons.org/licenses/by-nd/3.0/
14 changes: 7 additions & 7 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ tags: [sts, spring tool suite]
projects: []
---
:spring_version: current
:jdk: http://www.oracle.com/technetwork/java/javase/downloads/index.html
:jdk: https://www.oracle.com/technetwork/java/javase/downloads/index.html
:spring_boot_version: 1.5.3.RELEASE
:pws: http://try.run.pivotal.io/sts-guide
:pws: https://try.run.pivotal.io/sts-guide

:toc:
:icons: font
Expand All @@ -17,7 +17,7 @@ This guide walks you through the process of deploying a "hello world" Spring app

You'll deploy a Spring Boot application to Cloud Foundry that will accept HTTP GET requests at:

http://gs-sts-cloud-foundry-deployment-myname.cfapps.io/greeting
https://gs-sts-cloud-foundry-deployment-myname.cfapps.io/greeting

The application URL will vary depending on the host portion that you have to change later on in this guide.

Expand All @@ -27,7 +27,7 @@ The application will then respond with a web page displaying a greeting:

You can customize the greeting with an optional `name` parameter in the query string:

http://gs-sts-cloud-foundry-deployment-myname.cfapps.io/greeting?name=User
https://gs-sts-cloud-foundry-deployment-myname.cfapps.io/greeting?name=User

The `name` parameter value overrides the default value of "World" and is reflected in the response:

Expand All @@ -36,16 +36,16 @@ The `name` parameter value overrides the default value of "World" and is reflect
IMPORTANT: The `myname` portion of the URL is what you will change when you deploy your application to Cloud Foundry through STS, to avoid host-taken errors during deployment.

This application is based on a Spring service that serves web content. Further information on how to create the service from scratch can be found at
http://spring.io/guides/gs/serving-web-content/[Serving Web Content with Spring MVC], or it can be imported into STS through the http://spring.io/guides/gs/sts/[Import Spring Getting Started Content wizard].
https://spring.io/guides/gs/serving-web-content/[Serving Web Content with Spring MVC], or it can be imported into STS through the https://spring.io/guides/gs/sts/[Import Spring Getting Started Content wizard].


== What You'll Need

- About 15 minutes
- http://spring.io/tools/sts/all[Spring Tool Suite (STS)]
- https://spring.io/tools/sts/all[Spring Tool Suite (STS)]
- {jdk}[JDK 8] or later
- {pws}[Pivotal Web Services (PWS) account]
- http://docs.spring.io/sts/nan/v373/NewAndNoteworthy.html#bootdash[Spring Boot Dashboard]
- https://docs.spring.io/sts/nan/v373/NewAndNoteworthy.html#bootdash[Spring Boot Dashboard]


== Installing STS
Expand Down
2 changes: 1 addition & 1 deletion sample/src/main/resources/templates/greeting.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">
<html xmlns:th="https://www.thymeleaf.org">
<head>
<title>Getting Started: Serving Web Content</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
Expand Down