• 简介

  springMVC是表现层,service充当业务层,mybatis作为持久层,通过spring将这三层整合起来。如下图:

  第一步:整合dao层

  mybatis和spring整合,通过spring管理mapper接口。使用mapper的扫描器自动扫描mapper接口在spring中进行注册。

  第二步:整合service层

  通过spring管理 service接口,使用配置方式将service接口配置在spring配置文件中,实现事务控制。

  第三步:整合springmvc

  由于springmvc是spring的模块,不需要整合。

  • 整合Dao层

  也就是Spring与MyBatis的整合【×××地址】  

  1、MyBatis的配置:SqlMapConfig.xml


2     
3         
4         
5         
6 

  2、Dao的配置:applicationContext-dao.xml

  配置数据源、SqlSessionFactory、Mapper扫描器

 1 
15     
16     
17     
18     
20         
21         
22         
23         
24         
25         
26     
27     
28     
29         
30         
31         
32         
33     
34     
35     
36         
37         
38     
39 

  3、定于Po、Mapper接口和Mapper映射文件。

  • 整合Service

  让spring管理service

  定于service接口:

1 public interface ItemsService {2     // 获取商品列表
3     public List findItemsList(ItemsQueryVo itemsQueryVo)4             throws Exception;5 }

  service实现类:

 1 public class ItemsServiceImpl implements ItemsService { 2 
 3     @Autowired 4     private ItemsMapperCustom itemsMapperCustom; 5 
 6     @Override 7     public List findItemsList(ItemsQueryVo itemsQueryVo) 8             throws Exception { 9         // 通过itemsMapperCustom查询数据库
10         return itemsMapperCustom.findItemsList(itemsQueryVo);11     }12 }

  在spring容器中中配置service:applicationContext-service.xml

  事务控制:applicationContext-transaction.xml

 1 
15     
16     
18         
19         
20     
21     
22     
23     
24         
25             
26             
27             
28             
29             
30             
31             
32         
33     
34     
35     
36         
37     
38 

  通过AOP将事务织入了符合一定条件的方法上面。

  • 整合springMVC

  配置处理器映射器、适配器、视图解析器:springmvc.xml

 1 
15     
16     
17     
18     
19     
20         
21         
22         
23     
24 

  配置前端控制器:web.xml中加入:

 1 
 2         springmvc
 3         org.springframework.web.servlet.DispatcherServlet
 4         
 5             contextConfigLocation
 6             classpath:spring/springmvc.xml
 7         
 8         1
 9     
10     
11         springmvc
12         /
13     

  编写控制器:

 1 @Controller 2 @RequestMapping("/items") 3 public class ItemController { 4     @Autowired 5     private ItemsService itemsService; 6 
 7     // 商品查询
 8     @RequestMapping("/queryItems") 9     public ModelAndView queryItems() throws Exception {10         // 调用service查找 数据库,查询商品列表
11         List itemsList = itemsService.findItemsList(null);12 
13         // 返回ModelAndView
14         ModelAndView modelAndView = new ModelAndView();15         // 相当 于request的setAttribut,在jsp页面中通过itemsList取数据
16         modelAndView.addObject("itemsList", itemsList);17 
18         // 指定视图
19         // 下边的路径,如果在视图解析器中配置jsp路径的前缀和jsp路径的后缀,修改为
20         // modelAndView.setViewName("/WEB-INF/jsp/items/itemsList.jsp");
21         // 上边的路径配置可以不在程序中指定jsp路径的前缀和jsp路径的后缀
22         modelAndView.setViewName("items/itemsList");23 
24         return modelAndView;25     }26 }

  加载spring容器:

  将mapper、service、controller加载到spring容器中。在web.xml中,添加spring容器监听器,加载spring容器。


2     
3         contextConfigLocation
4         /WEB-INF/classes/spring/applicationContext-*.xml
5     
6     
7         org.springframework.web.context.ContextLoaderListener
8