
心得体会 Mybatis
醉面韦陀
努力工作一族!!!!!!!!!
展开
-
generator自动生成mybatis配置和类信息
generator自动生成mybatis的xml配置、model、map等信息: 1、下载mybatis-generator-core-1.3.2.jar包。 网址:http://code.google.com/p/mybatis/downloads/list?can=3&q=Product%3DGenerator,下载mybatis-generator-core-1.3....原创 2014-01-12 08:22:57 · 91 阅读 · 0 评论 -
Mybatis各种模糊查询
模糊查询: 工作中用到,写三种用法吧 1. sql中字符串拼接 SELECT * FROM tableName WHERE name LIKE CONCAT(CONCAT('%', #{text}), '%'); 2. 使用 ${...} 代替 #{...} SELECT * FROM tableName WHERE name LIKE '%${text}%';...原创 2013-08-19 11:55:16 · 119 阅读 · 0 评论