MyBatis
chicheese
这个作者很懒,什么都没留下…
展开
-
MybatisX插件无法识别Mapper和xml文件
最近使用了Mybatis X插件,遇到了Mapper文件和xml文件左边不显示小鸟的图标原因在于xml文件的<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "https://www.72crm.com/mybatis-3.5.3-mapper.dtd">声明使用错了,应该使用<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//.原创 2022-04-23 11:25:16 · 5624 阅读 · 1 评论 -
MyBatis 里使用双重 foreach 标签
接上一篇的需求,需要在 sql 里使用双重 foreach ,这里直接上代码<select id="queryPeoples" parameterType="com.bean.People" result="string"> select * from ( select id , GROUP_CONCAT(name) name from people <where> <if test="sex != null and sex !=原创 2020-12-01 19:29:47 · 1890 阅读 · 0 评论 -
使用MyBatis框架遇到There is no getter for property named 'param' in 'class com.vo.ParamVO'
有时候在写完代码之后,运行程序会碰到一些让人觉得奇怪的问题,也是需要对框架去多多了解,下面遇到的也是一个经常会遇到问题。严重: Servlet.service() for servlet [springMVC] in context with path [/MA_IBA] threw exception [Request processing failed; nested exception ...原创 2019-01-08 10:22:52 · 3182 阅读 · 0 评论