我正在为我的网络应用程序使用spring boot。我在applciation属性中设置了myApplication
的上下文路径。
但是当我运行我的应用程序时,嵌入式容器没有设置上下文路径。
application.properties
server.context-path=/myApplication
o.a.c.c.C.[Tomcat].[localhost].[/](Here the context is missing)
:初始化Spring嵌入式WebApplicationContext(运行容器时记录日志)
这可能是什么原因?
答案 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