04 2014 档案

摘要:1、mapper.xml中没有加入namespace 。2、mapper.xml中的方法和接口mapper的方法不对应 。3、mapper.xml没有加入到mybatis-config.xml中(即总的配置文件),例外:配置了mapper文件的包路径的除外 。4、mapper.xml文件名和所写的m... 阅读全文
posted @ 2014-04-26 21:08 ForeverLover 阅读(386) 评论(0) 推荐(0)
摘要:Map map = new HashMap();map.put("1","eg1");map.put("2","eg2");map.put("3","eg3");String eg1 = map get("1");String eg2 = map get("2");String eg3 = map ... 阅读全文
posted @ 2014-04-22 22:59 ForeverLover 阅读(949) 评论(0) 推荐(0)