From 497bdb8fee61a020ed6eb2efb2f612d30894ed74 Mon Sep 17 00:00:00 2001 From: Lee SangMin <75981576+IMWoo94@users.noreply.github.com> Date: Wed, 16 Oct 2024 07:24:54 +0900 Subject: [PATCH] Remove dead "Converting a jar to a war" guide link See gh-42691 --- .../src/docs/asciidoc/howto/traditional-deployment.adoc | 1 - 1 file changed, 1 deletion(-) diff --git a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/howto/traditional-deployment.adoc b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/howto/traditional-deployment.adoc index a9a29e7c59a..2d73ceb347d 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/howto/traditional-deployment.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/howto/traditional-deployment.adoc @@ -72,7 +72,6 @@ This means that, in addition to being deployable to a servlet container, you can === Convert an Existing Application to Spring Boot To convert an existing non-web Spring application to a Spring Boot application, replace the code that creates your `ApplicationContext` and replace it with calls to `SpringApplication` or `SpringApplicationBuilder`. Spring MVC web applications are generally amenable to first creating a deployable war application and then migrating it later to an executable war or jar. -See the https://spring.io/guides/gs/convert-jar-to-war/[Getting Started Guide on Converting a jar to a war]. To create a deployable war by extending `SpringBootServletInitializer` (for example, in a class called `Application`) and adding the Spring Boot `@SpringBootApplication` annotation, use code similar to that shown in the following example: