通过优锐课核心java学习笔记中,我们可以看到,码了很多专业的相关知识, 分享给大家参考学习。
MyBatis是用于高级映射和存储过程的SQL框架。
MyBatis是一个SQL映射框架,支持自定义SQL,存储过程和高级映射。
SpringBoot不为MyBatis集成提供官方支持,但是MyBatis社区为MyBatis构建了SpringBoot入门程序。
创建一个SpringBoot Maven项目并添加以下MyBatis Starter依赖项。
我们将重用在上一篇文章SpringBoot中创建的User.java,schema.sql和data.sql文件:使用JdbcTemplate
创建MyBatis SQL Mapper接口UserMapper.java,只需执行以下数据库操作即可:
package com.sivalabs.demo.domain;
public interface UserMapper
{
void insertUser(User user);
User findUserById(Integer id);
List
}
我们需要创建Mapper XML文件,以定义对应Mapper接口方法的映射SQL语句的查询。
在src / main / resources / com / sivalabs / demo / mappers /目录中创建UserMapper.xml文件,如下所示:
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
select id, name, email from users
select id, name, email from users WHERE id=#{id}
insert into users(name,email) values(#{name},#{email})
这里要注意的几件事是:
· Mapper XML中的命名空间应与Mapper接口的完全限定名称(FQN)相同
· 声明ID值应与Mapper接口方法名称相同。
· 如果查询结果列名称与bean属性名称不同,则可以使用
MyBatis还提供基于注释的查询配置,而无需Mapper XML。
我们可以创建UserMapper.java接口并使用注释配置映射的SQL,如下所示:
public interface UserMapper
{
@Insert("insert into users(name,email) values(#{name},#{email})")
@SelectKey(statement="call identity()", keyProperty="id",
before=false, resultType=Integer.class)
void insertUser(User user);
@Select("select id, name, email from users WHERE id=#{id}")
User findUserById(Integer id);
@Select("select id, name, email from users")
List
}
SpringBoot MyBatis入门程序提供以下MyBatis配置参数,我们可以使用这些参数自定义MyBatis设置。
mybatis.config = mybatis config file name
mybatis.mapperLocations = mappers file locations
mybatis.typeAliasesPackage = domain object's package
mybatis.typeHandlersPackage = handler's package
mybatis.check-config-location = check the mybatis configuration exists
mybatis.executorType = mode of execution. Default is SIMPLE
在application.properties中配置typeAliasesPackage和映射器位置。
mybatis.typeAliasesPackage=com.sivalabs.demo.domain
mybatis.mapperLocations=classpath*:**/mappers/*.xml
创建入口点类
SpringbootMyBatisDemoApplication.java。
@SpringBootApplication
@MapperScan("com.sivalabs.demo.mappers")
public class SpringbootMyBatisDemoApplication
{
public static void main(String[] args)
{
SpringApplication.run(SpringbootMyBatisDemoApplication.class, args);
}
}
观察到我们已经使用@MapperScan(“ com.sivalabs.demo.mappers”)注释指定在何处查找Mapper接口。
现在创建一个JUnit测试类并测试我们的UserMapper方法。
@RunWith(SpringJUnit4Cla***unner.class)
@SpringApplicationConfiguration(SpringbootMyBatisDemoApplication.class)
public class SpringbootMyBatisDemoApplicationTests
{
@Autowired
private UserMapper userMapper;
@Test
public void findAllUsers() {
List
assertNotNull(users);
assertTrue(!users.isEmpty());
}
@Test
public void findUserById() {
User user = userMapper.findUserById(1);
assertNotNull(user);
}
@Test
public void createUser() {
User user = new User(0, "Siva", "[email protected]");
userMapper.insertUser(user);
User newUser = userMapper.findUserById(user.getId());
assertEquals("Siva", newUser.getName());
assertEquals("[email protected]", newUser.getEmail());
}
}
你可以在http://www.mybatis.org/spring/上了解有关MyBatis和Spring集成的更多信息
> 喜欢这篇文章的可以点个赞,欢迎大家留言评论,记得关注我,每天持续更新技术干货、职场趣事、海量面试资料等等
> 如果你对java技术很感兴趣也可以交流学习,共同学习进步。
> 不要再用"没有时间“来掩饰自己思想上的懒惰!趁年轻,使劲拼,给未来的自己一个交代
文章写道这里,欢迎完善交流。最后奉上近期整理出来的一套完整的java架构思维导图,分享给大家对照知识点参考学习。有更多JVM、Mysql、Tomcat、Spring Boot、Spring Cloud、Zookeeper、Kafka、RabbitMQ、RockerMQ、Redis、ELK、Git等Java干货