SpringBoot+Mybatis 实现长字符串保存和更新

数据库字段,写成长字符

SpringBoot+Mybatis 实现长字符串保存和更新_第1张图片

插入xml,注意两个点,否则会报错

1、长字符串字段不能写if判断:

2、插入的时候做字符串转码:


        insert into gen_template_file(
        template_id,
        name,
        file_code,
        order_number,
        create_by,
        create_time
        )values(
        #{templateId},
        #{name},
        ,
        #{orderNumber},
        #{create_by},
        sysdate()
        )
    

 

 

你可能感兴趣的:(SpringBoot,mybatis,spring,boot,后端)