mybatis用注解替换xml,不再写.xml了

复制代码
在Service里引用
    @Autowired
    private DemoMapper demoMapper;

下面展示一些 DemoMapper.java代码片

复制代码
public interface DemoMapper{

 	/**
     * 查询页面信息-根据ID
     */
    @Select("select * from program where id = #{id}")
    Program getById(Long id);

    /**
     * 新增
     */
    @Insert({
            "<script> ",
            "  insert into program\n" +
                    "        <trim prefix=\"(\" suffix=\")\" suffixOverrides=\",\">\n" +
                    "            <if test=\"name != null and name != ''\">name,</if>\n" +
                    "            <if test=\"inDevId != null\">inDevId,</if>\n" +
                    "        </trim>\n" +
                    "        <trim prefix=\"values (\" suffix=\")\" suffixOverrides=\",\">\n" +
                    "            <if test=\"name != null and name != ''\">#{name},</if>\n" +
                    "            <if test=\"inDevId != null\">#{inDevId},</if>\n" +
                    "        </trim>",
            "</script>"
    })
    @Options(useGeneratedKeys = true, keyProperty = "id")
    int insert(Program program);


}

用<script>标签就可以写<if>这些标签哦

@Options(useGeneratedKeys = true, keyProperty = "id") 是返回最新自增主键id

其实就是用注解方式替换.xml写法,可考虑: 这个文章

相关推荐
p***q788 小时前
SpringBoot实战:高效实现API限流策略
java·spring boot·后端
3***16108 小时前
【JavaEE】Spring Boot 项目创建
java·spring boot·java-ee
6***v4178 小时前
VScode 开发 Springboot 程序
java·spring boot·后端
t***31658 小时前
SpringBoot中自定义Starter
java·spring boot·后端
橘子编程8 小时前
经典排序算法全解析
java·算法·排序算法
z***3358 小时前
SpringBoot获取bean的几种方式
java·spring boot·后端
aloha_7898 小时前
联易融测开面试准备
java·python·面试·单元测试
s***46988 小时前
【SpringBoot篇】详解Bean的管理(获取bean,bean的作用域,第三方bean)
java·spring boot·后端
动亦定9 小时前
页面导出大量数据导致响应超时解决方案
java·mysql
s***P9829 小时前
Spring Boot 集成 MyBatis 全面讲解
spring boot·后端·mybatis