gpt4 book ai didi

Spring @Transactional 不能与其他注释一起使用?

转载 作者:行者123 更新时间:2023-12-04 10:07:12 26 4
gpt4 key购买 nike

因此,我的 Spring 教育继续进行。目前我正在尝试学习一些注释以及它们给 Spring 3 带来的东西。所以我有一个迷你 webapp,它可以连接到 DB 并通过表单输入内容并显示记录等。一切正常。我决定尝试让 Spring 自动检测我标记为 @Transactional 的服务 bean,但这样做会阻止应用程序保存到数据库。所以:

@Transactional
public class ReservationServiceImpl implements ReservationService {

有效。我的 springcourt-data.xml 文件中有此类的 bean 声明。没问题。但是,当我这样做时:

@Transacational
@Service("reservationService")
public class ReservationServiceImpl implements ReservationService {

它不再有效。我确实有

<context:component-scan base-package="com.springcourt" />

在 springcourt-servlet.xml 文件中。那么谁能告诉我我搞砸了什么?我所做的就是向此类添加另一个注释并从 xml 文件中删除 bean 定义,它不再将数据保存到数据库中。我仍然可以从数据库中查询记录和内容,尽管很明显它正在使用自动检测的服务 bean。

配置文件如下:

springcourt-servlet.xml
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">

<context:component-scan base-package="com.springcourt" />

<bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping" />

<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
<property name="webBindingInitializer">
<bean class="com.springcourt.web.ReservationBindingInitializer" />
</property>
</bean>

<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/jsp/"/>
<property name="suffix" value=".jsp"/>
</bean>
</beans>

和:

springcourt-data.xml
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:p="http://www.springframework.org/schema/p"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-2.0.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-2.0.xsd">

<bean class="org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor" />

<bean id="entityManagerFactory"
class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="jpaVendorAdapter">
<bean
class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter">
<property name="database" value="MYSQL" />
<property name="showSql" value="true" />
</bean>
</property>
</bean>

<bean id="dataSource"
class="org.apache.commons.dbcp.BasicDataSource">
<property name="driverClassName" value="com.mysql.jdbc.Driver" />
<property name="url" value="jdbc:mysql://localhost:3306/test" />
<property name="username" value="root" />
<property name="password" value="admin" />
<property name="initialSize" value="5" />
</bean>

<bean id="transactionManager"
class="org.springframework.orm.jpa.JpaTransactionManager">
<property name="entityManagerFactory" ref="entityManagerFactory" />
</bean>

<tx:annotation-driven />

<bean id="reservationService" class="com.springcourt.service.ReservationServiceImpl"/>
</beans>

最佳答案

当您使用@Service 和组件扫描时,bean 由调度程序 servlet (mvc) 创建的上下文创建。由于 transaction:annotation driven 是在根应用程序上下文中定义的,因此它不适用于 servlet 上下文中的 bean。您可以通过删除 @Service 并将 bean 定义移动到 servlet 上下文文件来验证这一点——您应该会看到相同的结果。

当您不使用组件扫描时,bean 是在根应用程序上下文的 XML 中定义的。

修复方法是将 Web 层中的组件扫描标记更改为仅包含 Web 层类 - 通过使用不同的基础包或使用包含/排除过滤器。在根应用程序上下文中为其他 bean 添加另一个组件扫描。

查询可能有效,因为您可能配置了 OpenEntityManagerInViewInterceptor/Filter。

关于Spring @Transactional 不能与其他注释一起使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7772215/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com