S2SH整合
醉公子已被占用
热爱生活
展开
-
Junit 单元测试 assertThat
什么是单元测试写了个类,要给别人用,会不会有bug?怎么办?测试一下。用main方法测试好不好?不好!1. 不能一起运行!2. 大多数情况下需要人为的观察输出确定是否正确为什么要进行单元测试重用测试,应付将来的实现的变化。提高士气,明确知道我的东西是没问题的。JUnit4 HelloWorld1. new project原创 2012-04-30 13:37:19 · 2188 阅读 · 0 评论 -
attempt to create saveOrUpdate event with null entity(s2sh整合出现的问题)
今天在进行Struts、Spring、Hibernate的整合配置时,碰到一系列的问题,其中有一个是:java.lang.IllegalArgumentException: attempt to create saveOrUpdate event with null entity at org.hibernate.event.SaveOrUpdateEvent.(SaveOrUp原创 2012-04-24 15:39:58 · 1118 阅读 · 0 评论 -
spring启动的优化 default-lazy-init=true
项目采用struts2+spring+hibernate实现,项目的规模不算很大,但系统启动起来很慢原因在于:spring容器启动并解释所有的bean配置文件,这个很耗时间。发现spring的容器是提供了lazy-load的,即默认的缺省设置是bean没有lazy- load,该属性处于false状态,这样导致spring在启动过程导致在启动时候,会默认加载整个对象实例图,从初始化原创 2012-04-25 20:40:43 · 1987 阅读 · 0 评论