嵌入式tomcat容器没有从应用程序属性中获取上下文路径。(Spring boot)

时间:2016-07-29 07:34:25

标签: java tomcat web-applications spring-boot

我正在为我的网络应用程序使用spring boot。我在applciation属性中设置了myApplication的上下文路径。 但是当我运行我的应用程序时,嵌入式容器没有设置上下文路径。

application.properties

server.context-path=/myApplication

o.a.c.c.C.[Tomcat].[localhost].[/](Here the context is missing):初始化Spring嵌入式WebApplicationContext(运行容器时记录日志)

这可能是什么原因?

1 个答案:

答案 0 :(得分:0)

尝试将此添加到您的配置

    @Component
    public class CustomizationBean implements  EmbeddedServletContainerCustomizer {
     @Override
     public void customize(ConfigurableEmbeddedServletContainer container) 
       {    
            container.setPort(8083);
       }
     }

http://docs.spring.io/spring-boot/docs/current/reference/html/howto-embedded-servlet-containers.html