上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 41 下一页
  2016年2月28日
摘要: 今天在编码中不小心就遇到了一个ibatis初学者偶尔会遇到的问题。 先来看这张图中的DictionPo的部分属性赋值都为空。其实,数据库中是有数据的。 再来看看mapper的写法 上面那个对象查询语句是红框内的代码。少了一个东西。 其实:这样写就没问题了,因为少了resultMap这个属性。 <se 阅读全文
posted @ 2016-02-28 17:15 洛易 阅读(829) 评论(0) 推荐(0) 编辑
  2016年2月27日
摘要: 严重: Servlet.service() for servlet [springMVC] in context with path [/xxx] threw exception [Request processing failed; nested exception is org.springfr 阅读全文
posted @ 2016-02-27 15:38 洛易 阅读(2691) 评论(0) 推荐(0) 编辑
摘要: 1.对数据库中的数据生成脚本 a.选中要生成脚本的数据库右键->任务->生成脚本(如下图)->下一步->下一步->选中你想要生成的内容->下一步->完成 阅读全文
posted @ 2016-02-27 15:34 洛易 阅读(3354) 评论(0) 推荐(0) 编辑
摘要: 昨天将现在写的Web项目中的数据库由MySQL换成SQLServer,昨天想把MySQL重新安装一下,但是由于不明原因,导致无法安装。 卸载MySQL、删除安装文件、删除注册表、重启电脑。但是安装的时候还是无法安装,获取是MySQL安装的痛点。昨天下午开始安装SQLServer2008,到现在才弄好 阅读全文
posted @ 2016-02-27 14:51 洛易 阅读(6912) 评论(0) 推荐(0) 编辑
  2016年2月25日
摘要: 好久不写Web应用了,今天碰到这个问题的时候,还一时半会没反应过来。实体类在jsp无法找对应的值。 最后发现是实体bean的属性的开头字母不能与次字母不能大写+小写或小写+大写,最后改成小写+小写就好了。 http://blog.csdn.net/xue_feitian/article/detail 阅读全文
posted @ 2016-02-25 21:21 洛易 阅读(251) 评论(0) 推荐(0) 编辑
  2016年2月24日
摘要: 今天在写代码中遇到一个这样的问题。关于点击在html中添加点击事件,顺便把this对象通过参数传过去。 <a href='#' \>查看详情</a> <a href='javascript:markResolve(this);' \>标记解决</a> <a href='#' \>同步</a> 但是这 阅读全文
posted @ 2016-02-24 17:00 洛易 阅读(371) 评论(0) 推荐(0) 编辑
  2016年2月23日
摘要: 2016-02-23 14:06:27,416 [http-bio-8080-exec-1] DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] - Returning cached instanc 阅读全文
posted @ 2016-02-23 14:15 洛易 阅读(802) 评论(0) 推荐(0) 编辑
摘要: java.lang.IllegalArgumentException: Attribute value must not be null at org.springframework.util.Assert.notNull(Assert.java:112) at org.springframewor 阅读全文
posted @ 2016-02-23 14:06 洛易 阅读(1382) 评论(0) 推荐(0) 编辑
摘要: 我们可以在需要访问 Session 属性的 controller 上加上 @SessionAttributes,然后在 action 需要的 User 参数上加上 @ModelAttribute,并保证两者的属性名称一致。SpringMVC 就会自动将 @SessionAttributes 定义的属 阅读全文
posted @ 2016-02-23 10:10 洛易 阅读(2247) 评论(0) 推荐(1) 编辑
摘要: @Controller • @Service • @Autowired • @RequestMapping • @RequestParam • @ModelAttribute • @Cacheable • @CacheFlush • @Resource • @PostConstruct • @Pre 阅读全文
posted @ 2016-02-23 10:06 洛易 阅读(245) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 41 下一页