spring
aumy2008
这个作者很懒,什么都没留下…
展开
-
SpringAOP应用-日志输出耗时统计
一、采用@AspectJ注解来实现 1、在Spring配置文件中启用AspectJ:<aop:aspectj-autoproxy />。同时需要在应用程序的classpath中引入两个AspectJ库:aspectjweaver.jar 和 aspectjrt.jar。 2、定义用到的切面(@Aspect)类:包含切点(@Pointcut)和通知。 ...2008-08-08 13:47:00 · 712 阅读 · 0 评论 -
Spring2.0事务配置问题(重写父类方法后出错)
由于一些功能模块用到的Service和DAO层的方法类似,现将类似的方法进行重构,提出基本的Service和DAO,真正用到的Service和DAO只要实现或者继承即可。在重构后遇到事务配置问题,具体如下。 抛出异常:org.springframework.dao.InvalidDataAccessApiUsageException: Write operations are not allowe...2008-01-03 20:36:53 · 269 阅读 · 0 评论 -
Struts2+Hibernate+Spring项目小结――Spring部分
1、在web.xml中加载Spring的配置文件 contextConfigLocation classpath*:spring/*.xml org.springframework.web.context.ContextLoaderListener 2、配置属性文件 classp...2008-03-03 22:43:03 · 123 阅读 · 0 评论