
spring
iteye_5724
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
springIOC学习笔记
spring支持多个配置文件的管理: <import resource="daos.xml"/> <import resource="bizs.xml"/>将所有的文件都引入进来 测试的时候可以使用 ApplicationContext context = new ClassPathXmlApplicationContext( new String[] ...2010-03-12 11:24:36 · 78 阅读 · 0 评论 -
springAOP学习笔记
今天看spring的aop,头都看晕了 切面aspect,连接点joinpoint 切入点pointcut,代理proxy,通知advice,前置通知before advice 后置通知after advice,异常通知after throwing advice 最终通知 after finally advice 环绕通知around adivce,这几个概念还算容易理解。 aop代理通...2010-03-12 16:05:15 · 98 阅读 · 0 评论 -
spring2.5集成jpa
所需jar包: spring2.5: aspectjrt.jar aspectjweaver.jar cglib-nodep-2.1_3.jar common-annotations.jar commons-logging.jar log4j-1.2.15.jar spring.jar spring-webmvc-struts.jar hibernate3.3: antlr-...2010-03-30 18:49:24 · 118 阅读 · 0 评论