如何向 Spring Boot 应用程序添加上下文路径
如果您想为 Spring Boot 应用程序设置上下文根,以便它可以要从特定路径访问,您可以使用 application.properties 文件中的 server.contextPath 属性。此属性允许您指定将添加到所有控制器路径的上下文路径。
以下是如何将上下文路径设置为 /mainstay 的示例:
<code class="properties">server.contextPath=/mainstay</code>
您可以还可以使用 server.port 属性来设置应用程序运行的端口。例如,以下属性将上下文路径设置为 /mainstay 并将端口设置为 12378:
<code class="properties">server.contextPath=/mainstay server.port=12378</code>
在 Spring Boot 2.0 中,server.contextPath 属性已重命名为 server.servlet.context-path 。如果您使用的是 Spring Boot 2.0 或更高版本,则应使用新的属性名称。
设置上下文路径后,您可以从指定路径访问应用程序。例如,如果将上下文路径设置为/mainstay,则可以通过http://localhost:12378/mainstay访问应用程序的索引页面。应用程序中的控制器也将被附加到上下文路径中。例如,如果您的控制器的路径为 /index,则索引页面的完整路径将为 http://localhost:12378/mainstay/index。
以上是如何在 Spring Boot 应用程序中设置自定义上下文路径?的详细内容。更多信息请关注PHP中文网其他相关文章!