标签:
这篇主要是在整合Hibernate后,测试IoC和AOP的应用。
1 /* 2 * 加入spring容器 3 */ 4 private ApplicationContext applicationContext = 5 6 new ClassPathXmlApplicationContext("classpath:spring/applicationContext.xml"); 7 public static void main(String[] args) { 8 new UserServiceTest().testGetUserAndRole(); 9 } 10 11 public void test1() { 12 UserService userService= (UserService) applicationContext.getBean("userService"); 13 User user = userService.getById("u1"); 14 System.out.println(user.getId()+"---"+user.getUsername()); 15 }
从User user = userService.getById("u1");调用UserServiceImpl。(下文都省略贴接口)。
再看看UserServiceImpl
那么,spring容器应该是怎么样设置的呢?
其他,同理。
对于一个个bean地配置,可能有点麻烦,可以使用组件扫描
如,RoleServiceImpl
xml文件中,则是
这里是事务管理方面的应用。Spring中的设置如下。
<!-- 事务管理 --> <bean id="transactionManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager"> <property name="sessionFactory" ref="sessionFactory" /> </bean> <aop:config > <aop:advisor advice-ref="txAdvice" pointcut="execution(* com.xzw.ssh.service.impl.*.*(..))" /> </aop:config> <tx:advice id="txAdvice" transaction-manager="transactionManager"> <tx:attributes> <tx:method name="get*" read-only="true" propagation="REQUIRED"/><!--之前是NOT_SUPPORT--> <tx:method name="find*" read-only="true" propagation="REQUIRED"/><!--之前是NOT_SUPPORT--> <tx:method name="save*" propagation="REQUIRED"/> <tx:method name="update*" propagation="REQUIRED"/> <tx:method name="remove*" propagation="REQUIRED"/> <tx:method name="add*" propagation="REQUIRED"/> <!--默认其他方法都是REQUIRED--> <tx:method name="*"/> </tx:attributes> </tx:advice>
注意
在使用AOP的时候,之前导入的包还是不够,会有出现“找不到类”的提示,关键字,org/aopalliance/intercept/MethodInterceptor和org/aspectj/weaver,对应加入aopalliance-1.0.jar和aspectjweaver.jar
至此,spring和hibernate的整合基本完成。
标签:
原文地址:http://www.cnblogs.com/jway1101/p/5796646.html