1. 需求
使用springmvc和mybatis完成商品列表查询。
2. 整合思路
springmvc+mybaits的系统架构:
第一步:整合dao层
mybatis和spring整合,通过spring管理mapper接口。
使用mapper的扫描器自动扫描mapper接口在spring中进行注册。
第二步:整合service层
通过spring管理 service接口。
使用配置方式将service接口配置在spring配置文件中。
实现事务控制。
第三步:整合springmvc
由于springmvc是spring的模块,不需要整合。
3. 准备环境
数据库环境:mysql5.5
java环境:
jdk1.8
IDEA
所需要的jar包:
数据库驱动包:mysql5.1
mybatis的jar包
mybatis和spring整合包
log4j包
dbcp数据库连接池包
spring3.2所有jar包
jstl包
4.0.0
com.eurasia
SpringMVC_mybatis
war
1.0-SNAPSHOT
SpringMVC_mybatis Maven Webapp
http://maven.apache.org
UTF-8
UTF-8
4.0.9.RELEASE
3.3.0
5.1.18
1.7.18
1.2.17
jstl
jstl
1.2
javax
javaee-api
7.0
junit
junit
4.11
test
org.springframework
spring-core
${spring.version}
org.springframework
spring-beans
${spring.version}
org.springframework
spring-web
${spring.version}
org.springframework
spring-oxm
${spring.version}
org.springframework
spring-tx
${spring.version}
org.springframework
spring-jdbc
${spring.version}
org.springframework
spring-webmvc
${spring.version}
org.springframework
spring-context
${spring.version}
org.springframework
spring-context-support
${spring.version}
org.springframework
spring-aop
${spring.version}
org.springframework
spring-test
${spring.version}
org.aspectj
aspectjweaver
1.8.6
org.mybatis
mybatis
${mybatis.version}
org.mybatis
mybatis-spring
1.2.2
mysql
mysql-connector-java
${mysql-driver.version}
commons-dbcp
commons-dbcp
1.2.2
log4j
log4j
${log4j.version}
org.slf4j
slf4j-api
${slf4j.version}
org.slf4j
slf4j-log4j12
${slf4j.version}
SpringMVC_mybatis
4. 整合dao
4.1 sqlMapConfig.xml
mybatis自己的配置文件。
4.2 applicationContext-dao.xml
配置:数据源、SqlSessionFactory、mapper扫描器
4.3 逆向工程生成po类及mapper(单表增删改查)
4.4 手动定义商品查询mapper
针对综合查询mapper,一般情况会有关联查询,建议自定义mapper。
4.4.1 ItemsMapperCustom.xml
sql语句: SELECT * FROM items WHERE items.name LIKE '%笔记本%'
items.name LIKE '%${itemsCustom.name}%'
4.4.2 ItemsMapperCustom.java
package com.eurasia.mapper;
import com.eurasia.pojo.ItemsCustom;
import com.eurasia.pojo.ItemsQueryVo;
import java.util.List;
public interface ItemsMapperCustom {
//商品查询列表
public List findItemsList(ItemsQueryVo itemsQueryVo) throws Exception;
}
5 整合service
让spring管理service接口。
5.1 定义service接口
package com.eurasia.service;
import com.eurasia.pojo.ItemsCustom;
import com.eurasia.pojo.ItemsQueryVo;
import java.util.List;
public interface ItemsService {
//商品查询列表
public List findItemsList(ItemsQueryVo itemsQueryVo) throws Exception;
}
package com.eurasia.service.impl;
import com.eurasia.mapper.ItemsMapperCustom;
import com.eurasia.pojo.ItemsCustom;
import com.eurasia.pojo.ItemsQueryVo;
import com.eurasia.service.ItemsService;
import org.springframework.beans.factory.annotation.Autowired;
import java.util.List;
public class ItemsServiceImpl implements ItemsService {
@Autowired
private ItemsMapperCustom itemsMapperCustom;
public List findItemsList(ItemsQueryVo itemsQueryVo) throws Exception {
//通过ItemsMapperCustom查询数据库
return itemsMapperCustom.findItemsList(itemsQueryVo);
}
}
5.2 在spring容器配置service(applicationContext-service.xml)
5.3 事务控制(applicationContext-transaction.xml)
在applicationContext-transaction.xml中使用spring声明式事务控制方法。
6. 整合SpringMVC
6.1 springmvc.xml
创建springmvc.xml文件,配置处理器映射器、适配器、视图解析器。
6.2 配置前端控制器
在web.xml文件里作如下配置
Archetype Created Web Application
contextConfigLocation
classpath:/spring/applicationContext-*.xml
org.springframework.web.context.ContextLoaderListener
springmvc
org.springframework.web.servlet.DispatcherServlet
contextConfigLocation
classpath:/spring/springmvc.xml
springmvc
*.action
6.3 编写Controller(就是Handler)
package com.eurasia.controller;
import com.eurasia.pojo.ItemsCustom;
import com.eurasia.service.ItemsService;
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 java.util.List;
/**
* Created by yvettee on 2017/11/30.
*/
@Controller
public class ItemsController{
@Autowired
private ItemsService itemsService;
@RequestMapping("/queryItems")
public ModelAndView queryItems() throws Exception {
//调用service查找数据库,查询商品列表,这里使用静态数据模拟
List list = itemsService.findItemsList(null);
//返回ModelAndView
ModelAndView modelAndView = new ModelAndView();
//相当于request.setAttribute
modelAndView.addObject("itemslist", list);
//指定视图
modelAndView.setViewName("/items/itemsList");
return modelAndView;
}
}
6.4 编写jsp
itemsList.jsp
<%@ page contentType="text/html;charset=UTF-8" language="java" isELIgnored="false" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
商品列表
7. 加载spring容器
将mapper、service、controller加载到spring容器中。
建议使用通配符加载上边的配置文件。
在web.xml中,添加spring容器监听器,加载spring容器。前面已给出。
contextConfigLocation
classpath:/spring/applicationContext-*.xml
org.springframework.web.context.ContextLoaderListener
下篇:springmvc和mybatis整合—商品修改功能
源代码:https://github.com/yvettee36/SpringMVC_mybatis