shiro集成spring ,springmvc

web.xml:

 
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" 
id="WebApp_ID" version="3.0">
  
  
 
  contextConfigLocation
  classpath:applicationContext.xml
 

  
 
  org.springframework.web.context.ContextLoaderListener
 

  
    
        spring  
        org.springframework.web.servlet.DispatcherServlet  
        
        1
   
  
  
      
        spring  
        /  
   
  
    
   
   
        shiroFilter
        org.springframework.web.filter.DelegatingFilterProxy
       
            targetFilterLifecycle
            true
       

   



   
        shiroFilter
        /*
   

  

spring-servlet.xml


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




 








applicationContext.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">




   
   
   
   
   
       
       
       
       
   



   
   
   
       
       
   



   
         
   
        
   



   
   
            
   


   
         
         
              depends-on="lifecycleBeanPostProcessor"/>
   
       
   



   


   
         
   
       
       
       
       
       
       
       
       
           
                /login.jsp = anon
                
                # everything else requires authentication:
                /** = authc
           

       

   


ehcache.xml




   
   
    
               eternal="false"
           timeToIdleSeconds="3600"
           timeToLiveSeconds="0"
           overflowToDisk="false"
           statistics="true">
   



               eternal="false"
           timeToIdleSeconds="3600"
           timeToLiveSeconds="0"
           overflowToDisk="false"
           statistics="true">
   



               eternal="false"
           timeToIdleSeconds="3600"
           timeToLiveSeconds="0"
           overflowToDisk="false"
           statistics="true">
   



   
            maxElementsInMemory="10000"
        eternal="false"
        timeToIdleSeconds="120"
        timeToLiveSeconds="120"
        overflowToDisk="true"
        />


   


   
            maxElementsInMemory="10000"
        eternal="false"
        timeToIdleSeconds="300"
        timeToLiveSeconds="600"
        overflowToDisk="true"
        />


   
            maxElementsInMemory="1000"
        eternal="true"
        timeToIdleSeconds="0"
        timeToLiveSeconds="0"
        overflowToDisk="false"
        /> -->


   



你可能感兴趣的:(shiro)