STS MVC与MyBatis的结合
阅读原文时间:2023年07月15日阅读:1

1. MVC关键点在于Controller

1.1 Controller通过返回两种类型的数据完成用户端请求的回复:一种是模型(视图),另一种是JSON数据。

1.2 Controller类采用@Controller标签,可以加上RequestMapping,用于适配器解析;

1.3Controller类中用于处理客户请求的方法必须带有@RequestMapping标签,提供前后端参数名称的映射关系(即HTTP参数与方法参数的映射关系);

   每个方法的输入参数需要带有@RequestParam标签,如:@RequestParam(value = "userName", required = false) String userName

   下面是一个完整的方法:

@RequestMapping("/list")
@ResponseBody
public List list( @RequestParam(value = "userName",
required = false) String userName,  @RequestParam(value =
"note", required = false) String note) {
// 访问模型层得到数据
List userList = userService.findUsers(userName, note);
return userList;
}

一种情况可以不带@RequestParam标签,即当输入参数与HTTP本来就一致时。

2. 生成服务

   Controller中可能会有一个或多个服务,如果要采用MyBatis,需要进行封装,即:

  (1)生成一个带有服务所有操作的接口,接口参数需要带有@Mapper标签,建立与mapper.xml中的SQL变量名的映射关系

@Mapper
public interface UserDao {

User getUser(Long id);

List findUsers(@Param("userName") String
userName, @Param("note") String note);
}

  (2)通过XML文件建立方法与SQL的映射关系




这里id="findUsers",指出了控制器中的函数名,resultType="user"指出了返回的值类型,输入的值类型这里省略了(可省略吗?)

这里的#{userName}对应了@Param("userName"),#{note}对应了@Param("note") ,SQL语句中的user_name as userName将数据库列项与输入参数相关联,保证将来数据读取的正确性。

这里还有一个疑问:findUsers返回的值是List,但在XML文件中对应的返回会师却是:resultType="user"。这里的userUser类的别名,由类前面加@Alias标签确定。

(3)建立一个接口用于定义服务,其内部函数应当与前面的@Mapper接口完全一致,但不再需要@Param标签;

(4)建立一个服务类实现前面的服务接口,必须加入@Service标签,如果是事务的话,

需要加入@Transactional标签。类中要声明一个@Mapper定义的接口类型成员,并用@Autowired标识为自动生成,然后实现其中的方法,方法中调用@Mapper接口的函数:

@Service
@Transactional
public class UserServiceImpl implements UserService {

@Autowired
private UserDao userDao = null;

@Override
public User getUser(Long id) {
return userDao.getUser(id);
}

@Override
public List findUsers(String userName, String note) {
return userDao.findUsers(userName, note);
}
}

3.完成扫描和配置(bean和mapper)

@SpringBootApplication(scanBasePackages =
"com.springboot.chapter9")
@MapperScan(basePackages="com.springboot.chapter9", annotationClass =
Mapper.class)
public class Chapter9Application {
// @Autowired
// SqlSessionFactory sqlSessionFactory = null;
//
// @Bean
// public MapperFactoryBean initMyBatisUserDao() {
// MapperFactoryBean bean = new MapperFactoryBean<>();
// bean.setMapperInterface(UserDao.class);
// bean.setSqlSessionFactory(sqlSessionFactory);
// return bean;
// }
public static void main(String[] args) {
SpringApplication.run(Chapter9Application.class, args);
}
}

在程序主类中加入bean和mapper的扫描范围,这里不再需要加入SqlSessionFactory这一类的操作,添加了mybatis依赖后,spring boot会自动创建事务管理器、Mybatis的sqlSessionFactory和SqlsessionTemplate等模块。

4. 添加相关的依赖项和配置


http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0

springboot
chapter9
0.0.1-SNAPSHOT
war

chapter9
chapter9 project for Spring Boot

org.springframework.boot spring-boot-starter-parent 2.0.0.RELEASE

UTF-8 UTF-8 1.8


org.springframework.boot spring-boot-starter-aop
org.springframework.boot spring-boot-starter-web

org.mybatis.spring.boot mybatis-spring-boot-starter 1.3.2

org.mybatis mybatis 3.4.4
javax.servlet jstl provided
taglibs standard 1.1.2
mysql mysql-connector-java 8.0.11 runtime

org.springframework.boot spring-boot-starter-thymeleaf
org.springframework.boot spring-boot-starter-test test

org.springframework.boot spring-boot-maven-plugin

(1)原例中使用了:

org.springframework.boot spring-boot-starter-tomcat provided

删除后没有问题,所以去掉。

(2)生成后运行时,在页面中出现了 <%@ page pageEncoding="UTF-8"%> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>,这是JSP文件的上方的两行与JSTS相关的,不知为什么没能解析

(3)运行还是出错,后将mysql-connector-java依赖版本改为8.0.11,数据库操作正确,但仍找不到jsp资源;

(4)由于运行中使用了easyui的前端框架,开始时无法显示结果,但发现不是服务的原因,而是对jsp资源的解析问题。通过查资料,加入thymeleaf依赖;在application.properties文档中加入:

spring.thymeleaf.prefix=classpath:/WEB-INF/jsp/
spring.thymeleaf.suffix=.jsp
spring.thymeleaf.mode=LEGACYHTML5
#spring.thymeleaf.encoding=UTF-8
#spring.thymeleaf.content-type=text/html # ;charset= is added

spring.thymeleaf.cache=false

   结果正确,但起始没有数据,然后在相应的jsp中加入了

数据显示出来。

(5)其他配置

(5.1)数据库配置

spring.datasource.url=jdbc:mysql://localhost:3306/user
spring.datasource.username=root
spring.datasource.password=123456

#spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.datasource.tomcat.max-idle=10
spring.datasource.tomcat.max-active=50
spring.datasource.tomcat.max-wait=10000
spring.datasource.tomcat.initial-size=5

  (5.2)Mybatis配置

    #mapper.xml所在目录

     mybatis.mapper-locations=classpath:com/springboot/chapter9/mapper/*.xml

    #POJO类包名

mybatis.type-aliases-package=com.springboot.chapter9.pojo

(5.3)由于有了thymeleaf的配置,下面的配置不再有效:

#有了thymeleaf设置,这里将不再需要
#spring.mvc.view.prefix=/WEB-INF/jsp/
#spring.mvc.view.suffix=.jsp

5. 需要深入了解的问题:

  6.1 easyui是一个基于JQuery创建的客户端框架,它的用法还需要了解。其界面比较好,所以可以学一下;

  6.2 thymeleaf是一个用于解析jsp的框架,现在一无所知,需要了解