| ad5081d3  孙向锦
 
初始化项目 | 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38 |   <?xml version="1.0" encoding="UTF-8"?>
  <beans xmlns="http://www.springframework.org/schema/beans"
  	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  	xmlns:mvc="http://www.springframework.org/schema/mvc"
  	xmlns:context="http://www.springframework.org/schema/context"
  	xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
  		http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd	
  		http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
  	
  	<mvc:annotation-driven/>	
  	<mvc:default-servlet-handler/>
  	
  	<context:component-scan base-package="com.fh.controller" />
  	<context:component-scan base-package="com.json" />
  
  	<!-- 对静态资源文件的访问  restful-->
  	<!-- spring 4.3.7 可能会误报红叉,但不影响正常运行 -->   
  	<mvc:resources mapping="/admin/**" location="/,/admin/" />
  	<mvc:resources mapping="/static/**" location="/,/static/" />
  	<mvc:resources mapping="/plugins/**" location="/,/plugins/" />
  	<mvc:resources mapping="/uploadFiles/**" location="/,/uploadFiles/" /> 
  
  	<!-- 访问拦截  -->  
    	<mvc:interceptors>
  		<mvc:interceptor>
  			<mvc:mapping path="/**/**"/>
  			<bean class="com.fh.interceptor.LoginHandlerInterceptor"/>
  		</mvc:interceptor>
  	</mvc:interceptors>
  	 
  	<!-- 配置SpringMVC的视图解析器 -->
  	<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
  		<property name="prefix" value="/WEB-INF/jsp/"/>
  		<property name="suffix" value=".jsp"/>
  	</bean>
  	
  	<bean id="exceptionResolver" class="com.fh.resolver.MyExceptionResolver"></bean>
  	
 |