|
1 | 1 | ---
|
2 |
| -title: Tutorial - Prepare a Java Spring application for deployment in Azure Spring Cloud |
3 |
| -description: In this tutorial, you prepare a Java Spring application for deployment to Azure Spring Cloud. |
| 2 | +title: How-to - Prepare a Java Spring application for deployment in Azure Spring Cloud |
| 3 | +description: In this topic, you prepare a Java Spring application for deployment to Azure Spring Cloud. |
4 | 4 | author: bmitchell287
|
5 | 5 | ms.service: spring-cloud
|
6 |
| -ms.topic: tutorial |
| 6 | +ms.topic: how-to |
7 | 7 | ms.date: 02/03/2020
|
8 | 8 | ms.author: brendm
|
9 | 9 |
|
10 | 10 | ---
|
11 | 11 | # Prepare a Java Spring application for deployment in Azure Spring Cloud
|
12 | 12 |
|
13 |
| -This quickstart shows how to prepare an existing Java Spring application for deployment to Azure Spring Cloud. If configured properly, Azure Spring Cloud provides robust services to monitor, scale, and update your Java Spring Cloud application. |
| 13 | +This topic shows how to prepare an existing Java Spring application for deployment to Azure Spring Cloud. If configured properly, Azure Spring Cloud provides robust services to monitor, scale, and update your Java Spring Cloud application. |
14 | 14 |
|
15 | 15 | Other examples explain how to deploy an application to Azure Spring Cloud when the POM file is configured.
|
16 | 16 | * [Launch App using the Azure portal](spring-cloud-quickstart-launch-app-portal.md)
|
@@ -148,9 +148,9 @@ import org.springframework.cloud.netflix.zuul.EnableZuulProxy;
|
148 | 148 | @EnableZuulProxy
|
149 | 149 |
|
150 | 150 | public class GatewayApplication {
|
151 |
| - public static void main(String[] args) { |
152 |
| - SpringApplication.run(GatewayApplication.class, args); |
153 |
| - } |
| 151 | + public static void main(String[] args) { |
| 152 | + SpringApplication.run(GatewayApplication.class, args); |
| 153 | + } |
154 | 154 | }
|
155 | 155 | ```
|
156 | 156 |
|
@@ -220,7 +220,7 @@ Include the following `spring-cloud-starter-sleuth` and `spring-cloud-starter-zi
|
220 | 220 |
|
221 | 221 | ## Next steps
|
222 | 222 |
|
223 |
| -In this tutorial, you learned how to configure your Java Spring application for deployment to Azure Spring Cloud. To learn how to set up a Config Server instance, continue to the next tutorial. |
| 223 | +In this topic, you learned how to configure your Java Spring application for deployment to Azure Spring Cloud. To learn how to set up a Config Server instance, see the following article. |
224 | 224 |
|
225 | 225 | > [!div class="nextstepaction"]
|
226 | 226 | > [Learn how to set up a Config Server instance](spring-cloud-tutorial-config-server.md)
|
|
0 commit comments