
mybatis
文章平均质量分 68
iteye_6988
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
mybatis eclipse 快捷键
mybatis eclipse 快捷键 作用:在Mapper接口中的方法上,ctrl+鼠标光标, go to 到 mybatis在xml文件中的定义 这需要一个插件 :MyBatis Editor http://developer.51cto.com/art/201108/281754.htm...2015-06-01 17:22:05 · 428 阅读 · 0 评论 -
mybatis 字符串比较与in语句处理空集合
1、mybatis 字符串比较错误写法:if test="status == 'Y'"结果:抛异常NumberFormatException异常!提示内容非常少,看不出问题在哪里!正确写法:if test='status == "y"'还可以这样写:if test="status == 'y'.toString()" 评价:真操蛋 ,双引号里的单引号就不当字符串了?jav...2015-11-14 00:16:20 · 1533 阅读 · 0 评论