springmvc详解(二):springmvc和mybatis整合

springmvc详解(二):springmvc和mybatis整合

目录

springmvc详解(二):springmvc和mybatis整合

一、环境准备

1.1、案例需求

1.2、导入jar包

1.3、工程结构

二、整合思路

三、三层整合

3.1、整合dao层

3.1.1、mybatis配置文件

3.1.2、dao层spring配置文件applicationContext-dao.xml

3.2、整合service层

3.2.1、service层spring配置文件applicationContext-dao.xml

 3.2.2、spring管理事务的配置文件applicationContext-transaction.xml

3.3、配置springmvc的配置文件

3.4、配置web.xml文件

 3.5、三层整合配置文件总结

3.5.1、dao层

3.5.2、service层

3.5.3、表现层配置文件springmvc.xml

3.5.4、web.xml文件

四、三层代码编写

4.1、dao层

4.1.1、逆向工程生成单表的po类及mapper

4.1.2、手动定义多表的po类和mapper

4.2、service层

4.2.1、service接口

4.2.2、service接口实现类

4.3、表现层

4.3.1、编写Controller(就是Handler)

4.3.2、编写jsp

4.4、三层代码编写总结

4.4.1、dao层

4.4.2、service层

4.4.3、表现层

五、部署测试


一、环境准备

1.1、案例需求

使用springmvc和mybatis完成商品列表查询。

1.2、导入jar包

参照springmvc详解(一):入门程序这篇博客中的2.2部分。

1.3、工程结构

springmvc详解(二):springmvc和mybatis整合_第1张图片

二、整合思路

springmvc+mybaits的系统架构:

springmvc详解(二):springmvc和mybatis整合_第2张图片

Spring在进行管理时,是很有条理的,每个层都由Spring管理。对于表现层,通过spring管理表现层Handler;对于业务层,通过spring管理业务层service;对于持久层,通过spring管理持久层的mapper。同时遵循外层向里的调用逻辑:Handler中可以调用service接口,service中可以调用mapper接口。

整合步骤为:

第一步:整合dao层

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

第二步:整合service层

              通过spring管理 service接口。使用注解或配置方式将service接口配置在spring配置文件中。

              实现事务控制

第三步:整合springmvc

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

三、三层整合

3.1、整合dao层

3.1.1、mybatis配置文件

在mybatis自己的配置文件sqlMapConfig.xml中实现别名定义、缓存设置等配置。




	
	
	
		
		
	
	

3.1.2、dao层spring配置文件applicationContext-dao.xml

在applicationContext-dao.xml中完成数据源、SqlSessionFactory、mapper扫描器的配置。



	
	

	
	
		
		
		
		
		
		
	

	
	
		
		
		
		
	
	
	
	
		
		
		
		
	
		

3.2、整合service层

3.2.1、service层spring配置文件applicationContext-service.xml

在applicationContext-service.xml中管理service接口实现类的bean



	

		

 3.2.2、spring管理事务的配置文件applicationContext-transaction.xml




	
		
		
	
	
	
	
		
			
			
			
			
			
			
			
			
		
	

	
	
		
	

3.3、配置springmvc的配置文件

springmvc是spring的一个模块,不需要整合,但也需要在springmvc.xml中配置Handler、处理器映射器、适配器、视图解析器。

 


		
	
	
	
	
	
	
		
	
	
	
	
	
	
	
		
	
	
		
		
		
		
	

3.4、配置web.xml文件

在web.xml文件中完成一下几件事:

1、配置springmvc的前端控制器(加载springmvc配置文件)

2、加载spring的配置文件

3、加载监听器



  springmvcfirst
  
  
	
	
		contextConfigLocation
		/WEB-INF/classes/spring/applicationContext-*.xml
	
	
	
		org.springframework.web.context.ContextLoaderListener
	
  
  
  
  	springmvc
  	org.springframework.web.servlet.DispatcherServlet
  	
  	
  		contextConfigLocation
  		classpath:spring/springmvc.xml
  	
  
  
  
  	springmvc
  	
  	*.action
  
  
  
  
    index.html
    index.htm
    index.jsp
    default.html
    default.htm
    default.jsp
  

 3.5、三层整合配置文件总结

3.5.1、dao层

1、mybatis自己的配置文件sqlMapConfig.xml

       实现别名定义、缓存设置等配置。

2、dao层spring配置文件applicationContext-dao.xml

      完成数据源、SqlSessionFactory、mapper扫描器的配置。

3.5.2、service层

1、service层spring配置文件applicationContext-service.xml

      管理service接口实现类的bean(注解方式)

2、spring管理事务的配置文件applicationContext-transaction.xml

     实现事务控制、AOP

3.5.3、表现层配置文件springmvc.xml

配置Handler、处理器映射器、适配器、视图解析器。

3.5.4、web.xml文件

配置springmvc的前端控制器(加载springmvc配置文件)、加载spring的配置文件、加载监听器

四、三层代码编写

4.1、dao层

4.1.1、逆向工程生成单表的po类及mapper

参照博客:MyBatis详解:逆向工程自动生成代码

springmvc详解(二):springmvc和mybatis整合_第3张图片

4.1.2、手动定义多表的po类和mapper

针对综合查询mapper,一般情况会有关联查询,建议自定义po类和mapper,一般多表的po类继承自主表,次表以属性形式加载在po类中。

po类:ItemsCustom.java

这里仍是单表,多表的话在其中增加扩展属性即可。

package cn.itcast.ssm.po;


public class ItemsCustom extends Items {
	
	//添加商品信息的扩展属性

}

 ItemsQueryVo.java

package cn.itcast.ssm.po;


public class ItemsQueryVo {
	
	//商品信息
	private Items items;
	
	//为了系统 可扩展性,对原始生成的po进行扩展
	private ItemsCustom itemsCustom;

	public Items getItems() {
		return items;
	}

	public void setItems(Items items) {
		this.items = items;
	}

	public ItemsCustom getItemsCustom() {
		return itemsCustom;
	}

	public void setItemsCustom(ItemsCustom itemsCustom) {
		this.itemsCustom = itemsCustom;
	}
	
	

}

mapper.xml

在其中定义操作数据库的sql语句





   
   
   	
   	
   		
   			
   				items.name LIKE '%${itemsCustom.name}%'
   			
   		
	
   
  	
  	
  	
  	
  	

mapper.java

 在其中定义对应sql语句的抽象方法

package cn.itcast.ssm.mapper;

import cn.itcast.ssm.po.Items;
import cn.itcast.ssm.po.ItemsCustom;
import cn.itcast.ssm.po.ItemsExample;
import cn.itcast.ssm.po.ItemsQueryVo;

import java.util.List;
import org.apache.ibatis.annotations.Param;

public interface ItemsMapperCustom {
    //商品查询列表
	public List findItemsList(ItemsQueryVo itemsQueryVo)throws Exception;
}

4.2、service层

4.2.1、service接口

package cn.itcast.ssm.service;

import java.util.List;

import cn.itcast.ssm.po.ItemsCustom;
import cn.itcast.ssm.po.ItemsQueryVo;

public interface ItemsService {
	//商品查询列表
	public List findTtemsList(ItemsQueryVo itemsQueryVo) throws Exception;
}

4.2.2、service接口实现类

还记得外层向里的调用逻辑吗?:Handler中可以调用service接口,service中可以调用mapper接口。

由于service要调用mapper,故需要在service接口实现类中注入mapper代理对象

package cn.itcast.ssm.service.impl;

import java.util.List;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import cn.itcast.ssm.mapper.ItemsMapperCustom;
import cn.itcast.ssm.po.ItemsCustom;
import cn.itcast.ssm.po.ItemsQueryVo;
import cn.itcast.ssm.service.ItemsService;

@Service("itemsService")
public class ItemsServiceImpl implements ItemsService{
	@Autowired
	private ItemsMapperCustom itemsMapperCustom;

	@Override
	public List findTtemsList(ItemsQueryVo itemsQueryVo) throws Exception {
		
		return itemsMapperCustom.findItemsList(itemsQueryVo);
	}
	
}

4.3、表现层

4.3.1、编写Controller(就是Handler)

由于表现层handler要调用service接口,故需要在handler中注入service接口。

package cn.itcast.ssm.controller;

import java.util.ArrayList;
import java.util.List;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;

import cn.itcast.ssm.po.Items;
import cn.itcast.ssm.po.ItemsCustom;
import cn.itcast.ssm.service.ItemsService;

//商品的controller
@Controller
public class ItemsController {
	@Autowired
	private ItemsService itemsService;
	//商品查询列表
	//@RequestMapping实现 对queryItems方法和url进行映射,一个方法对应一个url
	//一般建议将url和方法写成一样
	@RequestMapping("/queryItems")
	public ModelAndView quertItems() throws Exception{
		//调用service查找 数据库,查询商品列表,这里使用静态数据模拟
		List itemsList = itemsService.findTtemsList(null);
		
		//返回ModelAndView
		ModelAndView modelAndView =  new ModelAndView();
		//相当 于request的setAttribut,在jsp页面中通过itemsList取数据
		modelAndView.addObject("itemsList", itemsList);
		
		//指定视图
		//下边的路径,如果在视图解析器中配置jsp路径的前缀和jsp路径的后缀,修改为
		//modelAndView.setViewName("/WEB-INF/jsp/items/itemsList.jsp");
		//上边的路径配置可以不在程序中指定jsp路径的前缀和jsp路径的后缀
		modelAndView.setViewName("items/itemsList");
		return modelAndView;
	}
}

4.3.2、编写jsp

编写itemsList.jsp文件,存于/springmvcfirst/WebRoot/WEB-INF/jsp/items/itemsList.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt"  prefix="fmt"%>




查询商品列表

 
查询条件:
商品列表:
商品名称 商品价格 生产日期 商品描述 操作
${item.name } ${item.price } ${item.detail } 修改

4.4、三层代码编写总结

4.4.1、dao层

1、逆向工程生成单表的po类及mapper

2、手动定义多表的po类和mapper(包括mapper.java和mapper.xml)

一般多表的po类继承自主表,次表以属性形式加载在po类中。在mapper.xml定义操作数据库的sql语句,在mapper.java中编写sql语句对应的抽象方法。

4.4.2、service层

1、编写service接口,对应于所调用的dao层的mapper.java

2、编写service接口的实现类,并在其中注入mapper代理对象

4.4.3、表现层

1、编写Controller(就是Handler),由于表现层handler要调用service接口,故需要在handler中注入service接口。

2、编写jsp

五、部署测试

Debug方式执行Service打开浏览器,输入相应的Handler的url即可。

springmvc详解(二):springmvc和mybatis整合_第4张图片

你可能感兴趣的:(springmvc,springmvc,mybatis,整合,ssm)