diff --git a/spring-zero-core/src/main/java/org/springframework/zero/web/SpringServletInitializer.java b/spring-zero-core/src/main/java/org/springframework/zero/web/SpringServletInitializer.java index 19c8e3e7aa0..68f35fff2a9 100644 --- a/spring-zero-core/src/main/java/org/springframework/zero/web/SpringServletInitializer.java +++ b/spring-zero-core/src/main/java/org/springframework/zero/web/SpringServletInitializer.java @@ -14,21 +14,17 @@ import org.springframework.zero.SpringApplication; import org.springframework.zero.context.embedded.AnnotationConfigEmbeddedWebApplicationContext; /** - *

* A handy opinionated {@link WebApplicationInitializer} for applications that only have * one Spring servlet, and no more than a single filter (which itself is only enabled when * Spring Security is detected). If your application is more complicated consider using * one of the other WebApplicationInitializers. - *

* - *

+ *

* Note that a WebApplicationInitializer is only needed if you are building a war file and * deploying it. If you prefer to run an embedded container (we do) then you won't need * this at all. - *

* * @author Dave Syer - * */ public abstract class SpringServletInitializer implements WebApplicationInitializer {