smm框架集成总结

mybatis,springmvc,spring三大框架:
1.dao层:mybatis有总配置文件spring-dao.xml,每个实体类都对应自己的映射文件entity.xml
2.service层:spring的配置文件spring-service.xml,其中主要配置事务管理和数据库连接池
3.web层:对于spring-mvc的配置,spring-web.xml

三大框架都会有自己的配置文件,但是最终还是在为web.xml中通过



contextConfigLocation
classpath:spring/spring-*.xml


这样一个扫描机制,将这三个xml配置文件一起加载,这样才真正实现三大框架的整合

你可能感兴趣的:(个人心得)