spring mvc.xml配置文件


<beans xmlns="http://www.springframework.org/schema/beans"
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" xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="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.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd">
<!--掃描控制包-->
<context:component-scan base-package="ssm.shiro.controller"></context:component-scan>
<!--聲明以注解的方式配置spring mvc-->
<mvc:annotation-driven></mvc:annotation-driven>

<!--restful風格:會默認的在web.xml中配置一個名叫default的servlet,這個servlet用來處理所有的靜態資源,目前只能處理css資源,
js可以單獨配置-->
<!--<mvc:default-servlet-handler></mvc:default-servlet-handler>-->

<!--配置spring mvc的內置的視圖解析器-->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<!--配置視圖的前綴-->
<property name="prefix" value="/WEB-INF/jsp/"></property>
<!--配置視圖的后綴-->
<property name="suffix" value=".jsp"></property>
</bean>
<!--開啟aop-->
<aop:config proxy-target-class="true"></aop:config>
<!--聲明以注解的方式授權-->
<bean class="org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor">
<property name="securityManager" ref="securityManager"></property>
</bean>
<!--配置統一的異常處理器-->
<bean id="exceptionResolver" class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver">
<!--配置出異常后跳轉的界面-->
<property name="defaultErrorView" value="error"></property>
</bean>
</beans>


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM