MyBatis学习总结(六)——Mybatis3.x与Spring4.x整合
阅读原文时间:2023年07月09日阅读:2

1.1、使用Maven创建Web项目

  执行如下命令:

mvn archetype:create -DgroupId=me.gacl -DartifactId=spring4-mybatis3 -DarchetypeArtifactId=maven-archetype-webapp -DinteractiveMode=false

创建失败:

Maven 命令行创建项目时 Could not find goal ‘create’ in plugin org.apache.maven.plugins:…

使用maven3.5.3 版本,进行命令行创建项目时输入以下命令创建失败

mvn archetype:create -DgroupId=com.myl  -DartifactId=system-parent -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false****

主要报错信息:Could not find goal ‘create’ in plugin org.apache.maven.plugins:maven-archetype-plugin:3.0.0 among available goals crawl, create-from-project, generate, help, integration-test, jar, update-local-catalog -> [Help 1]

原因:版本命令冲突,即在maven3.0.5以上版本舍弃了create,使用generate生成项目

修改命令

mvn archetype:generate -DgroupId=me.gacl -DartifactId=spring4-mybatis3 -DarchetypeArtifactId=maven-archetype-webapp -DinteractiveMode=false

创建成功,如图所示:

创建项目如图所示:

编辑pom.xml文件

http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4\_0\_0.xsd"> 4.0.0 com.myl spring4-mybatis3 war 1.0-SNAPSHOT spring4-mybatis3 Maven Webapp http://maven.apache.org junit junit 3.8.1 test spring4-mybatis3

修改 spring4-mybatis3 Maven Webapp 部分,把" Maven Webapp"这部分包含空格的内容去掉,否则Maven在编译项目时会因为空格的原因导致一些莫名其妙的错误出现,修改成: spring4-mybatis3 。

  另外,把以下内容删掉:

<dependency>  
  <groupId>junit</groupId>  
  <artifactId>junit</artifactId>  
  <version>3.8.1</version>  
  <scope>test</scope>  
</dependency>

这部分是junit的jar包依赖信息,这个版本太低了,我们不使用这个Junit测试版本,修改过后的pom.xml内容如下:

http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4\_0\_0.xsd">
4.0.0
com.myl
spring4-mybatis3
war
1.0-SNAPSHOT
spring4-mybatis3
http://maven.apache.org


spring4-mybatis3

1.2、将创建好的项目导入MyEclipse中

  具体操作步骤如下图所示:

  

自动创建创建【src/main/java】、【src/test/resources】、【src/test/java】这三个source folder,如下图所示:

(如果不能自动创建则手动创建)

到此,项目搭建的工作就算是全部完成了。

SQL脚本如下:

Create DATABASE spring4_mybatis3;
USE spring4_mybatis3;

DROP TABLE IF EXISTS t_user;
CREATE TABLE t_user (
user_id char(32) NOT NULL,
user_name varchar(30) DEFAULT NULL,
user_birthday date DEFAULT NULL,
user_salary double DEFAULT NULL,
PRIMARY KEY (user_id)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

创建好的数据库和表如下:

  在网上找到了一个generator工具可以根据创建好的数据库表生成MyBatis的表对应的实体类,SQL映射文件和dao,找到generator工具根目录下的generator.xml文件,这个文件是用来配置代码生成规则的,如下图所示:

刚才我们在generator.xml文件中配置将生成的代码和SQL映射文件放到"C:\Users\gacl\spring4-mybatis3\src\main\java"这个目录下,这个目录就是我们的spring4-mybatis3项目所在目录,我们刷新一下src/main/java目录,就可以看到生成的代码和映射文件了,如下图所示:

生成的代码和映射文件一行都不用改,可以直接应用到项目当中。下面我们看一眼由generator工具生成的代码和映射文件:

1、生成的dao类(UserMapper.java)

package com.myl.dao;

import com.myl.domain.User;

public interface UserMapper {
int deleteByPrimaryKey(String userId);

int insert(User record);

int insertSelective(User record);

User selectByPrimaryKey(String userId);

int updateByPrimaryKeySelective(User record);

int updateByPrimaryKey(User record);  

}

  生成的UserMapper是一个接口,里面定义了一些操作t_user表的增删改查方法。

2、生成的实体类(User.java)

package com.myl.domain;

import java.util.Date;

public class User {
private String userId;

private String userName;

private Date userBirthday;

private Double userSalary;

public String getUserId() {  
    return userId;  
}

public void setUserId(String userId) {  
    this.userId = userId == null ? null : userId.trim();  
}

public String getUserName() {  
    return userName;  
}

public void setUserName(String userName) {  
    this.userName = userName == null ? null : userName.trim();  
}

public Date getUserBirthday() {  
    return userBirthday;  
}

public void setUserBirthday(Date userBirthday) {  
    this.userBirthday = userBirthday;  
}

public Double getUserSalary() {  
    return userSalary;  
}

public void setUserSalary(Double userSalary) {  
    this.userSalary = userSalary;  
}  

}

  User类是t_user表的对应的实体类,User类中定义的属性和t_user表中的字段一一对应。

3、生成的SQL映射文件(UserMapper.xml)



user_id, user_name, user_birthday, user_salary delete from t_user where user_id = #{userId,jdbcType=CHAR} insert into t_user (user_id, user_name, user_birthday, user_salary) values (#{userId,jdbcType=CHAR}, #{userName,jdbcType=VARCHAR}, #{userBirthday,jdbcType=DATE}, #{userSalary,jdbcType=DOUBLE}) insert into t_user user_id, user_name, user_birthday, user_salary, #{userId,jdbcType=CHAR}, #{userName,jdbcType=VARCHAR}, #{userBirthday,jdbcType=DATE}, #{userSalary,jdbcType=DOUBLE}, update t_user user_name = #{userName,jdbcType=VARCHAR}, user_birthday = #{userBirthday,jdbcType=DATE}, user_salary = #{userSalary,jdbcType=DOUBLE}, where user_id = #{userId,jdbcType=CHAR} update t_user set user_name = #{userName,jdbcType=VARCHAR}, user_birthday = #{userBirthday,jdbcType=DATE}, user_salary = #{userSalary,jdbcType=DOUBLE} where user_id = #{userId,jdbcType=CHAR}

UserMapper.xml这个文件的内容是编写操作t_user表的SQL语句,重点说一下UserMapper.xml配置中需要注意的几个小细节问题:

  1、UserMapper.xml的标签的namespace必须是UserMapper接口的全类名,既

  2、UserMapper.xml的定义操作数据库的 select from t_user where user_id = #{userId,jdbcType=CHAR}
delete from t_user where user_id = #{userId,jdbcType=CHAR}
insert into t_user (user_id, user_name, user_birthday, user_salary) values (#{userId,jdbcType=CHAR}, #{userName,jdbcType=VARCHAR}, #{userBirthday,jdbcType=DATE}, #{userSalary,jdbcType=DOUBLE})
insert into t_user user_id, user_name, user_birthday, user_salary, #{userId,jdbcType=CHAR}, #{userName,jdbcType=VARCHAR}, #{userBirthday,jdbcType=DATE}, #{userSalary,jdbcType=DOUBLE},
update t_user user_name = #{userName,jdbcType=VARCHAR}, user_birthday = #{userBirthday,jdbcType=DATE}, user_salary = #{userSalary,jdbcType=DOUBLE}, where user_id = #{userId,jdbcType=CHAR}
update t_user set user_name = #{userName,jdbcType=VARCHAR}, user_birthday = #{userBirthday,jdbcType=DATE}, user_salary = #{userSalary,jdbcType=DOUBLE} where user_id = #{userId,jdbcType=CHAR}

<!-- ==============以下内容是根据自身业务扩展的内容======================= -->  
  <!-- select标签的id属性与UserMapper接口中定义的getAllUser方法要一模一样 -->  
<select id="getAllUser" resultMap="BaseResultMap">  
    select user\_id, user\_name, user\_birthday, user\_salary from t\_user  
</select>  

4、在UserServiceI接口中也添加一个getAllUser()方法,如下:

package com.myl.service;

import java.util.List;

import com.myl.domain.User;

public interface UserServiceI {

/\*\*  
 \* 添加用户  
 \* @Title:             addUser  
 \* @param:             @param user  
 \* @return:         void  
 \*/  
void addUser(User user);

/\*\*  
 \* 根据用户id获取用户  
 \* @Title:             getUserById  
 \* @param:             @param id  
 \* @param:             @return  
 \* @return:         User  
 \*/  
User getUserById(String userId);

/\*\*  
 \* 获取所有用户信息  
 \* @Title:             getAllUser  
 \* @return:         List<User>  
 \*/  
List<User> getAllUser();  

}

5、在UserServiceImpl类中实现getAllUser方法,如下:

package com.myl.service.impl;

import java.util.List;

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

import com.myl.dao.UserMapper;
import com.myl.domain.User;
import com.myl.service.UserServiceI;

/**
* @author myl
* @date 2018年5月6日 上午10:24:26
* 使用@Service注解将UserServiceImpl类标注为一个service
* service的id是userService
*/

@Service("userService")
public class UserServiceImpl implements UserServiceI {

/\*\*  
 \* 使用@Autowired注解标注userMapper变量,  
 \* 当需要使用UserMapper时,Spring就会自动注入UserMapper  
 \*/  
@Autowired  
private UserMapper userMapper;//注入dao

public void addUser(User user) {  
    userMapper.insert(user);

}

public User getUserById(String userId) {  
    return userMapper.selectByPrimaryKey(userId);  
}

public List<User> getAllUser() {  
    return userMapper.getAllUser();  
}

}

6、在src/main/java目录下创建一个me.gacl.web.controller包,然后在me.gacl.web.controller下创建一个UserServlet,如下:

package com.myl.web.controller;

import java.io.IOException;
import java.util.List;

import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationContext;
import org.springframework.web.context.support.WebApplicationContextUtils;

import com.myl.domain.User;
import com.myl.service.UserServiceI;

/**
* @author myl
* @WebServlet是Servlet3.0提供的注解,目的是将一个继承了HttpServlet类的普通java类标注为一个Servlet
* UserServlet使用了@WebServlet标注之后,就不需要在web.xml中配置了
*/
@WebServlet("/UserServlet")
public class UserServlet extends HttpServlet {

//处理业务逻辑的userService  
@Autowired  
private UserServiceI userService;

@Override  
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {  
    //获取所有的用户信息  
    List<User> lstUsers = userService.getAllUser();  
    request.setAttribute("lstUsers", lstUsers);  
    request.getRequestDispatcher("/index.jsp").forward(request, response);  
    super.doGet(request, response);  
}

@Override  
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {  
    super.doPost(request, response);  
}

@Override  
public void init() throws ServletException {  
    super.init();  
    ApplicationContext ac = WebApplicationContextUtils.getWebApplicationContext(this.getServletContext());  
    userService = (UserServiceI) ac.getBean("userService");

}  

}

7、编辑index.jsp页面,用于展示查询到的用户信息,内容如下:

<%@page language="java" pageEncoding="utf-8" %>
<%--引入jstl核心标签库 --%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

显示用户信息

<%--遍历lstUsers集合中的User对象 --%>
用户ID 用户名 用户生日 工资
${user.userId} ${user.userName} ${user.userBirthday} ${user.userSalary}

8、执行maven install命令编译项目,然后将项目部署到tomcat服务器中运行,注意,由于要使用Servlet3.0,所以必须将项目部署到tomcat8.5服务器中去运行,如下所示:

输入地址:http://localhost:8080/spring4-mybatis3/UserServlet 访问UserServlet,访问结果如下:

可以看到,t_user表中的用户信息全部查询出来显示到页面上了。这样在web服务器中的测试也正常通过了。

  以上就是Spring4.x与MyBatis3.x整合的全部内容了。如果遇到执行Maven install操作不能正常编译通过的情况:可以尝试采用:Maven clean→Clean项目→Maven install这三个步骤去解决问题

该项目参考大神博文,如有如有问题,欢迎提出。