Spring Boot/ORM框架——Mybatis的增删改查

一.ORM:对象关系模型

二.Spring 使用mybatis的步骤——XML方式:

先在数据库创建表,连接好数据库,完成增删改查功能。

1.mybatis的依赖和配置:

<!--依赖-->
 <dependency>
            <groupId>org.mybatis.spring.boot</groupId>
            <artifactId>mybatis-spring-boot-starter</artifactId>
            <version>2.1.2</version>
 </dependency>

#配置
#公共属性文件的配置地址
#mybatis.config-location=classpath:mybatis/mybatis-config.xml
#映射文件通配符的配置地址
mybatis.mapper-locations=classpath:mybatis/mapper/*.xml
#扫描别名包,和注解@Alias联用,暂时没用到
mybatis.type-aliases-package=com.niit.mybatisdemo.model
#表的下划线与类的驼峰式对应
mybatis.configuration.map-underscore-to-camel-case=true

2.创建实体类和接口:

@Builder
@Data
@NoArgsConstructor
@AllArgsConstructor
public class Message {
    private Integer msgId;
    private String msgText;
    private String msgSummary;
}
@Mapper
@Repository
public interface MessageMapper {
    List<Message> selectAll();
    Message selectById(Integer id);
    int insert(Message message);
    int delete(Integer id);
    int update(Message message);
    int updateText(Message message);
    int batchInsert(List<Message> messages);
}

3.表的映射xml文件配置:

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
        PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
        "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.niit.mybatisdemo.mapper.MessageMapper">
    <resultMap id="BaseResultMap" type="com.niit.mybatisdemo.model.Message">
        <id column="msg_id" property="msgId" jdbcType="BIGINT"/>
        <result column="msg_text" property="msgText" jdbcType="VARCHAR"/>
        <result column="msg_summary" property="msgSummary" jdbcType="VARCHAR"/>
    </resultMap>

    <sql id="Base_Column_List">
        msg_id,msg_text,msg_summary
    </sql>

    <insert id="insert" parameterType="com.niit.mybatisdemo.model.Message">
        insert into message(msg_text,msg_summary) values (#{msgText},#{msgSummary})
    </insert>

    <select id="selectAll" resultMap="BaseResultMap">
        select * from message
    </select>

    <select id="selectById" parameterType="Integer" resultMap="BaseResultMap">
        SELECT
        <include refid="Base_Column_List"></include>
        FROM message
        WHERE msg_id=#{msgId}
    </select>

    <delete id="delete" parameterType="Integer">
        DELETE FROM message WHERE msg_id=#{msgId}
    </delete>

    <update id="update" parameterType="com.niit.mybatisdemo.model.Message">
        Update message SET
        <if test="msgText != null"> msg_text=#{msgText},</if>
        <if test="msgSummary != null"> msg_summary=#{msgSummary}</if>
        WHERE msg_id = #{msgId}
    </update>

    <update id="updateText" parameterType="com.niit.mybatisdemo.model.Message">
        UPDATE message
        <set>
            <if test="msgText != null and msgText != ''"> msg_text=#{msgText}</if>
            <if test="msgSummary != null and msgSummary != ''"> msg_summary=#{msgSummary}</if>
        </set>
        WHERE msg_id = #{msgId}
    </update>
    
    <insert id="batchInsert" parameterType="com.niit.mybatisdemo.model.Message">
        INSERT INTO message (msg_text,msg_summary) VALUES
        <foreach collection="list" item="msg" index="index" separator=",">
            (#{msg.msgText},#{msg.msgSummary})
        </foreach>
    </insert>

</mapper>

4.写测试类:

@Slf4j
@SpringBootTest
@TestMethodOrder(MethodOrderer.OrderAnnotation.class)
public class MessageMapperTest {

    @Autowired
    private  MessageMapper messageMapper;

    @Test
    @Order(1)
    public void testInsert(){
        //模拟数据
        Message message = Message.builder().msgText("樱花").msgSummary("春天").build();
        int num = messageMapper.insert(message);
        log.info("插入数据数:{}",num);
    }

    @Test
    @Order(2)
    public void  testSelectAll(){
        List<Message> messages = messageMapper.selectAll();
        if (messages == null){
            log.error("messages为null");
        }else {
            messages.forEach(message -> log.info("查询到的数据:{}",message));
        }
    }


    @Test
    @Order(3)
    public void testSelectById(){
        Message message = messageMapper.selectById(1);
        log.info("id为1的数据:{}",message);
    }

    @Test
    @Order(4)
    public void testDelete(){
        int num = messageMapper.delete(1);
        log.info("删除的数据数:{}",num);
    }

    @Test
    @Order(5)
    public void testUpdate(){
        Message message = Message.builder().msgId(1).msgText("computer").msgSummary("学校").build();
        int num = messageMapper.update(message);
        log.info("更新的数据条数:{}",num);
    }

    @Test
    @Order(6)
    public void testUpdateText(){
        Message message = Message.builder().msgId(1).msgText("hhh").msgSummary("").build();
        int num = messageMapper.updateText(message);
        log.info("更新Text的数据条数:{}",num);
    }


    @Test
    @Order(7)
    public void testBatchInsert(){
        List<Message> messages = new ArrayList<>(Arrays.asList(
                Message.builder().msgText("apple").msgSummary("水果").build(),
                Message.builder().msgText("orange").msgSummary("水果").build()));
        int num = messageMapper.batchInsert(messages);
        log.info("插入的数据条数:{}",num);
    }
}

5.结果:

三.Spring 使用mybatis的步骤——注解方式:

只需要将上面XML方式中的【3.表的映射xml文件配置】删除,并在接口中添加代码就可以了,运行结果一样。

  • 添加代码如下:
@Mapper
@Repository
public interface MessageMapper {
    @Select("select * from message")
   List<Message> selectAll();

   @Select("select * from message where msg_id=#{msgId}")
   Message selectById(Integer id);


   @Insert("insert into message (msg_text,msg_summary) values (#{msgText},#{msgSummary})")
   int insert(Message message);

   @Insert({"<script>" +
           "insert into message (msg_text,msg_summary) values" +
           "<foreach collection = 'list' item='msg' index='index' separator = ','>" +
           "(#{msg.msgText},#{msg.msgSummary})" +
           "</foreach>" +
           "</script>"})
   int batchInsert(List<Message> messages);

   @Delete("delete from message where msg_id=#{msgId}")
   int delete(Integer id);

   @Update({"<script>" +
           "update message set" +
           "<if test = 'msgText != null'>msg_text = #{msgText}</if>," +
           "<if test = 'msgSummary != null'>msg_summary = #{msgSummary}</if>" +
           "where msg_id = #{msgId}" +
           "</script>"})
   int update(Message message);

   @Update({"<script>" +
           "update message" +
           "<set>" +
           "<if test = 'msgText != null'>msg_text = #{msgText}</if>," +
           "<if test = 'msgSummary != null'>msg_summary = #{msgSummary}</if>" +
           "</set>" +
           "where msg_id = #{msgId}" +
           "</script>"})
   int updateText(Message message);
}

四.Spring 使用mybatis的步骤——辅助工具快速创建方式:

1.安装插件:

  • MyBatis Generator(或者Free Mybatis plugin):Mybatis代码生成器。
MyBatis Generator的运行方法有多种,下面介绍通过Maven插件mybatis-generator-maven-plugin运行。

2.添加并连接数据库和配置mybatis:

我创建了两张表,实现1对多关系,在users表中添加主键

//数据库的表
drop table if exists message;
create table message(
msg_id int not null auto_increment,
msg_text VARCHAR(32) not null,
msg_summary VARCHAR(32) default null,
PRIMARY KEY(msg_id)
)engine=INNODB auto_increment=1 DEFAULT charset=utf8


drop table if exists users;
create table users (
    id bigint auto_increment comment '主键id' primary key,
    user_name     varchar(32)  null comment '用户名',
    sex int(3) not null default 1 comment '性别',
    note varchar(256) null comment '笔记'
)engine = InnoDB default charset = utf8;
spring.datasource.url=jdbc:mysql://localhost:3306/test1?serverTimezone=UTC\
&useUnicode=true&characterEncoding=utf-8&useSSL=true&nullCatalogMeansCurrent = true
spring.datasource.username=root
spring.datasource.password=root
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver

# mybatis的配置
mybatis.mapper-locations=classpath*:/mapper/**/*.xml
mybatis.type-aliases-package=com.niit.mybatisgeneratordemo.model
mybatis.configuration.map-underscore-to-camel-case=true

3.添加插件配置:

             <plugin>
                <groupId>org.mybatis.generator</groupId>
                <artifactId>mybatis-generator-maven-plugin</artifactId>
                <version>1.4.0</version>
                <configuration>
                    <!--mybatis的代码生成器的配置文件-->
                    <configurationFile>src/main/resources/mybatis-generator-config.xml</configurationFile>
                    <!--允许覆盖生成的文件-->
                    <overwrite>true</overwrite>
                    <!-- 允许移动生成的文件-->
                    <verbose>true</verbose>
                </configuration>
                <dependencies>
                    <dependency>
                        <groupId>mysql</groupId>
                        <artifactId>mysql-connector-java</artifactId>
                        <version>8.0.19</version>
                    </dependency>
                </dependencies>
            </plugin>

4.在resources下配置Mybatis Generator:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE generatorConfiguration PUBLIC
        "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"
        "http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd">
<generatorConfiguration>
    <!-- 引入配置文件 -->
    <properties resource="application.properties"/>
    <!-- 配置context -->
    <context id="simple" targetRuntime="MyBatis3">
        <plugin type="org.mybatis.generator.plugins.FluentBuilderMethodsPlugin"/>
        <plugin type="org.mybatis.generator.plugins.ToStringPlugin"/>
        <plugin type="org.mybatis.generator.plugins.SerializablePlugin"/>
        <plugin type="org.mybatis.generator.plugins.RowBoundsPlugin"/>

        <commentGenerator>
            <!-- 不希望生成的注释中包含时间戳 -->
            <property name="suppressDate" value="true"/>
        </commentGenerator>

        <!-- 数据库连接 -->
        <jdbcConnection driverClass="${spring.datasource.driver-class-name}"
                        connectionURL="${spring.datasource.url}"
                        userId="${spring.datasource.username}"
                        password="${spring.datasource.password}"/>

        <!-- 数据表对应的model层  -->
        <javaModelGenerator targetPackage="com.niit.mybatisgeneratordemo.model"
                            targetProject="./src/main/java">
            <property name="enableSubPackages" value="true"/>
            <property name="trimStrings" value="true"/>
        </javaModelGenerator>

        <!-- sql mapper 映射配置文件 -->
        <sqlMapGenerator targetPackage="."
                         targetProject="./src/main/resources/mapper">
            <property name="enableSubPackages" value="true"/>
        </sqlMapGenerator>

        <!-- mybatis3中的mapper接口 -->
        <javaClientGenerator type="MIXEDMAPPER"
                             targetPackage="com.niit.mybatisgeneratordemo.mapper"
                             targetProject="./src/main/java">
            <property name="enablePackages" value="true"/>
        </javaClientGenerator>

<!--         数据表生成操作 schema:相当于库名; tableName:表名; domainObjectName:对应的DO -->
<!--        <table tableName="users" domainObjectName="Useusersrs"-->
<!--               enableCountByExample="false" enableUpdateByExample="false"-->
<!--               enableDeleteByExample="false" enableSelectByExample="false"-->
<!--               selectByExampleQueryId="false">-->
<!--        </table>-->

    <table tableName="message" domainObjectName="Message" />
    <table tableName="users" domainObjectName="Users" />
</context>
</generatorConfiguration>

注意:如果您使用的是mysql-connector-java的8.x版,生成器可能会尝试为MySql information schemas中的表生成代码。要禁用此行为,请将属性“nullCatalogMeansCurrent = true”添加到JDBC URL。MySql不能正确支持SQL catalogs和schema。

5.生成时使用插件:

6.项目目录结构图:

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 211,884评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,347评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,435评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,509评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,611评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,837评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,987评论 3 408
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,730评论 0 267
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,194评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,525评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,664评论 1 340
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,334评论 4 330
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,944评论 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,764评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,997评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,389评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,554评论 2 349

推荐阅读更多精彩内容