摘要:
* 首先列出示例中用到的数据库表 user表: accout表: role表: user_role表: 建表语句如下: DROP TABLE IF EXISTS `user`; CREATE TABLE `user` ( `id` int(11) NOT NULL auto_increment, ` 阅读全文
摘要:
使用 if where foreach标签对映射配置文件中sql语句进行动态配置 1、首先在dao接口中设置两个查询方法 1 package sun.dao; 2 3 import sun.domain.QueryObj; 4 import sun.domain.User; 5 6 import j 阅读全文