问:我正在尝试在 Spring Boot 应用程序中以编程方式设置上下文根,但它没有附加到请求映射。我缺少什么?
答:您正在尝试创建自定义解决方案,但 Spring Boot 已经支持此功能。在 src/main/resources 中创建 application.properties 文件并添加以下属性:
server.contextPath=/mainstay server.port=12378
对于 Spring Boot 2.0:
server.servlet.context-path=/mainstay
删除自定义servlet 容器配置,或使用 EmbeddedServletContainerCustomizer 来应用后处理。
application.properties 值用作默认值,您可以使用另一个 application.properties 文件或 JVM 参数覆盖该值 (-Dserver.port=6666) .
ServerProperties 类实现了 EmbeddedServletContainerCustomizer,默认上下文路径为“”。在您的代码中,您直接在 TomcatEmbeddedServletContainerFactory 上设置上下文路径。但是,ServerProperties 在处理过程中会用“”覆盖它。
以上是如何在 Spring Boot 应用程序中设置上下文路径?的详细内容。更多信息请关注PHP中文网其他相关文章!