通过注解实现一个简单的MVC案例前的环境配置

(1)环境配置

首先是要配置环境,在这里要先找到下列三个文件在本地的路径进行配置:


然后在eclipse中做如下的配置:




在application.xml中也要进行配置:

<?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:aop="http://www.springframework.org/schema/aop"
	   xmlns:context="http://www.springframework.org/schema/context"
	   xsi:schemaLocation="
http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
http://www.springframework.org/schema/aop 
http://www.springframework.org/schema/aop/spring-aop-4.2.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-4.2.xsd">




          
</beans>




















猜你喜欢

转载自blog.csdn.net/qq_26925297/article/details/80086373