关于maven项目中SSM+Shiro整合配置中,在有SpringMVC+MyBatis配置下整合shiro的配置步骤!!...

 

这是applicationContext.xml里的配置,但是我是将有关shiro的配置单独放在一个xml文件中(application_shiro.xml),我个人觉得这样更容易区分:


xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">





























接着配置web.xml:



shiroFilter
org.springframework.web.filter.DelegatingFilterProxy

targetFilterLifecycle
true




shiroFilter
/*



contextConfigLocation

classpath:applicationContext.xml
classpath:application_shiro.xml



然后再是spring_mvc.xml(添加注解功能):


depends-on="lifecycleBeanPostProcessor">






然后开启
配置文件完成,开启tomcat,成功开启(出现如图所示的红线部分,说明配置shiro成功):

原文:https://blog.csdn.net/m0_37954004/article/details/79089767 

 

转载于:https://www.cnblogs.com/DarryZz04/p/11274666.html

你可能感兴趣的:(java)