常见问题解决方案:MyBatis篇

1、MyBatis模糊查询

    <select id="getArticlePage" resultType="com.hand.cms.dto.ArticleDto">
        SELECT a.id,a.title,a.column_id AS columnId,a.ranges,a.author,a.read_times AS readTimes,a.created_date AS
        createdDate,a.last_updated_date AS lastUpdatedDate,a.version_number AS versionNumber,a.deleted,c.name AS
        columnsName
        FROM article a
        LEFT JOIN columns c
        ON a.column_id=c.id
        <where>
            a.deleted=0
            <if test="title!=null">
                AND a.title LIKE concat(concat('%',#{title}),'%')
            </if>
            <if test="columnId!=null">
                AND a.column_id LIKE concat(concat('%',#{columnId}),'%')
            </if>
        </where>
    </select>

2、使用IDEA报错:org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)

1)、mapper接口类和mapper.xml是否在同一个包下,文件名称是否一致(仅后缀不同)

2)、mapper.xml的namespace是否是对应接口类的全名(包括包名和类名)

3)、mapper接口类的方法名是否与mapper.xml中sql标签的id相同

4)、idea默认是不编译src\main\java下的xml文件

  • 将*Mapper.xml复制一份到resources下
  • 在pom.xml中配置资源代码
    <build>
        <resources>
            <resource>
                <directory>src/main/java</directory>
                <includes>
                    <include>**/*.xml</include>
                </includes>
            </resource>
        </resources>
    </build>

3、更新数据库时报错:org.springframework.dao.DataIntegrityViolationException

数据库中时间类型的原因,导致这样的错误。datetimeYYYY-MM-DD HH:MM:SS格式检索和显示DATETIME值。支持的范围为1000-01-01 00:00:009999-12-31 23:59:59。而TIMESTAMP值支持的范围1970-01-01 08:00:012038-01-19 11:14:07储存,对于TIMESTAMP来说如果不在这个范围就会报这个错

将MySQL时间类型由timestamp改成datetime就行了

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

邋遢的流浪剑客

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值