Spring 中的注解

 

@Repository代表仓库. 一般注解在DAO实现类上, 别人看代码时, 就知道这个类是一个跟数据存储有关的类. 

@Service代表业务. 一般注解在Service实现类上.
@Controller代表控制器. 一般注解在控制器类上. 
如果你的类不是以上类型(数据存储类, 业务类, 控制器), 可以笼统的使用@Component

 

Spring 事物控制有声明式事物和编程式事物

声明的事物配置有XML配置和annotation 两种配置方式。

annotation 配置

<bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">

        <property name="sessionFactory" ref="sessionFactory" />
    </bean>
    <context:annotation-config/>

    <tx:annotation-driven transaction-manager="transactionManager" /> 

      XML 配置

<bean class="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator">

        <property name="beanNames">
            <list>
                <value>*Service</value>
                <value>*Dao</value>
            </list>
        </property>
        <property name="interceptorNames">
            <list>
                <value>transactionInterceptor</value>
            </list>
        </property>
    </bean>

     <bean id="transactionInterceptor"
        class
="org.springframework.transaction.interceptor.TransactionInterceptor" autowire="default">
        <property name="transactionManager" ref="transactionManager" />
        <property name="transactionAttributes">
            <props>
                <prop key="*">PROPAGATION_REQUIRED</prop>
            </props>
        </property>
    </bean>
    <bean id="transactionManager"
        class
="org.springframework.orm.hibernate4.HibernateTransactionManager">
        <property name="sessionFactory" ref="sessionFactory" />
    </bean>

      

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。