Skip to main content
 首页 » 编程设计

spring-boot之如何使用 Spring Security 在 Spring Boot 中设置上下文路径

2024年08月15日5langtianya

我在具有 spring security 的 Spring Boot 应用程序中将 application.properties 中的 contextPath 设置为 server.contextPath=/myWebApp ,默认 url 设置为/login ,而不将上下文路径设置为/myWebApp 并将我重定向回/login 而不是/myWebApp/登录。如何使用 spring security 4.0 设置 contextPath ?由于 tomcat 给出警告作为上下文 []..未在容器中部署应用程序。

请您参考如下方法:

我通过在Application.properties文件中设置server.servlet.context-path解决了这个问题

代码示例

应用程序属性

server.servlet.context-path=/myWebApp/

<小时 />

通过这个,你也可以实现你想要的登录页面 http://localhost:8080/myWebApp/login

<小时 />