其他分享
首页 > 其他分享> > SpringSecurity集中式整合之加入jsp

SpringSecurity集中式整合之加入jsp

作者:互联网

整合认证第二版

加入jsp,使用自定义认证页面

说明

SpringBoot官方是不推荐在SpringBoot中使用jsp的,那么到底可以使用吗?答案是肯定的!

不过需要导入tomcat插件启动项目,不能再用SpringBoot默认tomcat了。

我们不能 通过启动类的方式来进行启动了,因为它会不识别Jsp页面,必须导入jar包,然后更换方法

导入SpringBoot的tomcat启动插件jar包

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-tomcat</artifactId>
</dependency>
<dependency>
    <groupId>org.apache.tomcat.embed</groupId>
    <artifactId>tomcat-embed-jasper</artifactId>
</dependency>

加入jsp页面等静态资源

在src/main目录下创建webapp目录

这时webapp目录并不能正常使用,因为只有web工程才有webapp目录,在pom文件中修改项目为web工程

这时webapp目录,可以正常使用了!

修改login.jsp中认证的url地址

修改header.jsp中退出登录的url地址

标签:SpringBoot,tomcat,SpringSecurity,集中式,jsp,webapp,目录,页面
来源: https://blog.csdn.net/Leon_Jinhai_Sun/article/details/121309124