Spring+mybatis @Transactional Annotation Transaction does not take effect

Source: Internet
Author: User

@Transactional Declarative Transaction configuration:

  <bean id= "TransactionManager"
class= "Org.springframework.jdbc.datasource.DataSourceTransactionManager" >
<property name= "DataSource" ref= "DataSource"/>
</bean>

<!--declarative transaction configuration--
<tx:annotation-driven transaction-manager= "TransactionManager"/>

----------------------------------------------------------------Split Line------------------------------------------------------ ---------------------------------------------------------------------------

After adding the above configuration, @transactional (such as) is declared on the class, but method a of the Menuheadinsmapserviceimpl class is called in the action layer, and method A does not enter a transaction.

Workaround:

1. In spring configuration file Applicationcontext.xml, the controller is excluded from scanning the package:

  <context:component-scan base-package= "Com.cg.*.*" >

<context:exclude-filter type= "Annotation" expression= "Org.springframework.stereotype.Controller"/>
</context:component-scan>

2. In Springmvc profile Servlet.xml, the service is excluded from scanning the package:

  <context:component-scan base-package= "Com.cg.*.*" >
<context:exclude-filter type= "Annotation" expression= "Org.springframework.stereotype.Service"/>
</context:component-scan>

This article is mainly for reference: http://blog.csdn.net/z69183787/article/details/37819627

Spring+mybatis @Transactional Annotation Transaction does not take effect

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.