问题: 在使用Ibatis查询数据返回时,报如下错误: [com.show.add.proxy.SqlMapClientTemplateProxy]com.ibatis.common.jdbc.exception.NestedSQLException: --- The error occurred in com/show/add/ibatis/adChannel.xml. --- The error occurred while applying a result map. --- Check…
1,NamedParameterJdbcTemplate 查询列表 /***测试***/ public void queyBeanTest(){ String s = "select * from PT_USER "; List<PtUser> list = namedJdbcTemplate.query(s, new BeanPropertyRowMapper<PtUser>(PtUser.class)); System.out.println(list);…
在使用流水号的时候,Google浏览器没有问题,但是IE有缓存,如果ajax请求的参数没有变化,那么就会返回缓存里的数据 解决方法:ajax请求的时候传值的参数设置一个时间戳就OK了(没什么特别意义,每次参数不同,就不会使用缓存里的结果) 例如: function systemCode(){ var timestamp=new Date().getTime() $.getJSON("getSysCode",{"time":timestamp}, function(d…