LOFTER for ipad —— 让兴趣,更有趣

点击下载 关闭
Spring Boot + MyBatis + MySQL 整合
时光号 2018-11-27

一、前言

昨天在弄 Spring Boot 与 MyBatis 的整合,首先在网上查看了很多人写的文章,参照前人的经验就开始整了,结果整了一天都是 bug,后来自己到官网上查看官方文档后才得以顺手解决,这也让自己以后要吸取教训,最好先看官方文档,然后再实践。结合自己查看的网上关于 Spring Boot 与 MyBatis 整合的文章,有得写的相当复杂,有的是按照文中描述进行实践后发现不行,所以自己再对其进行总结。我使用的是采用 全注解的方式来实现 MyBatis,这也正好符合 Spring Boot 的思想:使用注解,少用配置文件。最后也加上了个使用 XML 配置的代码。

二、整合步骤1. 在 pom.xml 的文件中添加以下依赖:        <!-- 添加 MyBatis -->        <dependency>            <groupId>org.mybatis.spring.boot</groupId>            <artifactId>mybatis-spring-boot-starter</artifactId>            <version>1.2.0</version>        </dependency>        <!-- 添加 MySQL -->        <dependency>            <groupId>mysql</groupId>            <artifactId>mysql-connector-java</artifactId>            <version>5.1.41</version>        </dependency>

这里我们看到在项目中使用的是 MyBatis 官方提供的 starter,mybatis-spring-boot-starter 的 Github 源码地址为: https://github.com/mybatis/spring-boot-starter ,mybatis-spring-boot-stater的官方文档地址:https://www.mybatis.org/spring-boot-starter/mybatis-spring-boot-autoconfigure/ ,MyBatis 官方中文文档:https://www.mybatis.org/mybatis-3/zh/java-api.html 。

2. 在 application.properties 文件中添加数据库的配置spring.datasource.url=jdbc:mysql://127.0.0.1:3306/demo?useUnicode=true&characterEncoding=UTF-8spring.datasource.username=rootspring.datasource.password=123spring.datasource.driver-class-name=com.mysql.jdbc.Driver3. 新建 DAO 接口,里面编写增、删、改、查方法@Mapperpublic interface PersonMapper {    /**     * 添加操作,返回新增元素的 ID     *     * @param personDO     */    @Insert("insert into person(name,age) values(#{name},#{age})")    @Options(useGeneratedKeys = true, keyColumn = "id", keyProperty = "id")    void insert(PersonDO personDO);    /**     * 更新操作     *     * @param personDO     * @return 受影响的行数     */    @Update("update person set name=#{name},age=#{age} where id=#{id}")    Long update(PersonDO personDO);    /**     * 删除操作     *     * @param id     * @return 受影响的行数     */    @Delete("delete from person where id=#{id}")    Long delete(@Param("id") Long id);    /**     * 查询所有     *     * @return     */    @Select("select id,name,age from person")    List<PersonDO> selectAll();    /**     * 根据主键查询单个     *     * @param id     * @return     */    @Select("select id,name,age from person where id=#{id}")    PersonDO selectById(@Param("id") Long id);}

这里全部使用的是注解的方式,关于 MyBatis 的所有注解,可以参考 MyBatis 的中文文档。

4. 编写 Controller@EnableTransactionManagement  // 需要事务的时候加上@RestControllerpublic class PersonController {    @Autowired    private PersonMapper personMapper;    @RequestMapping("/save")    public Integer save() {        PersonDO personDO = new PersonDO();        personDO.setName("张三");        personDO.setAge(18);        personMapper.insert(personDO);        return personDO.getId();    }    @RequestMapping("/update")    public Long update() {        PersonDO personDO = new PersonDO();        personDO.setId(2);        personDO.setName("旺旺");        personDO.setAge(12);        return personMapper.update(personDO);    }    @RequestMapping("/delete")    public Long delete() {        return personMapper.delete(11L);    }    @RequestMapping("/selectById")    public PersonDO selectById() {        return personMapper.selectById(2L);    }    @RequestMapping("/selectAll")    public List<PersonDO> selectAll() {        return personMapper.selectAll();    }    @RequestMapping("/transaction")    @Transactional  // 需要事务的时候加上    public Boolean transaction() {        delete();        int i = 3 / 0;        save();        return true;    }}

至此,运行就可以测试了,是不是很简单。关于注解的使用可以参考这篇文章:https://blog.csdn.net/luanlouis/article/details/35780175 ,最后奉上代码地址:https://github.com/435242634/Spring-Boot-Demo/tree/feature/3-spring-boot-mybatis



作者:FlySheep_ly
链接:https://www.jianshu.com/p/c2444ddd2de9


推荐文章
评论(0)
联系我们|招贤纳士|移动客户端|风格模板|官方博客|侵权投诉 Reporting Infringements|未成年人有害信息举报 0571-89852053|涉企举报专区
网易公司版权所有 ©1997-2024  浙公网安备 33010802010186号 浙ICP备16011220号-11 增值电信业务经营许可证:浙B2-20160599
网络文化经营许可证: 浙网文[2022]1208-054号 自营经营者信息 工业和信息化部备案管理系统网站 12318全国文化市场举报网站
网信算备330108093980202220015号 网信算备330108093980204230011号
分享到
转载我的主页