gpt4 book ai didi

java - 如何在 Spring 服务的 @Transactional 方法中实现 Oracle ADF ApplicationModule 和 JPA 之间的共享事务?

转载 作者:行者123 更新时间:2023-11-29 09:28:27 27 4
gpt4 key购买 nike

我想调用一个Oracle ADF的方法ApplicationModule来自@Transactional Spring的方法Service我在哪里调用 JPA EntityManager方法也是如此。这些调用需要在同一个事务中提交。两者使用相同的 DataSource我的应用服务器是 Weblogic 10.3.5。我怎样才能做到这一点?

当我使用 JtaTransactionManager 时,我的应用程序模块更改已提交,但更改为 JPA 不是。当我使用 JpaTransactionManager , ApplicationModule更改未提交。

这是我的 Spring 配置:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:jee="http://www.springframework.org/schema/jee"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.2.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.2.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
http://www.springframework.org/schema/jee
http://www.springframework.org/schema/jee/spring-jee-3.2.xsd">
<context:component-scan base-package="testspring.view"/>
<context:annotation-config/>
<mvc:annotation-driven/>
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="viewClass"
value="org.springframework.web.servlet.view.JstlView"/>
<property name="prefix" value="/WEB-INF/jsp/"/>
<property name="suffix" value=".jsp"/>
</bean>
<mvc:default-servlet-handler/>
<bean id="dataSource" name="dataSource"
class="org.springframework.jndi.JndiObjectFactoryBean">
<property name="jndiName" value="jdbc/hrDS"/>
<property name="resourceRef" value="true"/>
</bean>
<bean class="org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor"/>
<bean id="entityManagerFactory"
class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
<property name="dataSource" ref="dataSource"/>
<property name="packagesToScan" value="testspring.model"/>
<property name="jpaVendorAdapter">
<bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter"/>
</property>
<property name="jpaProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.Oracle10gDialect</prop>
<prop key="javax.persistence.validation.mode">AUTO</prop>
<prop key="hibernate.archive.autodetection">class</prop>
<prop key="hibernate.ejb.naming_strategy">org.hibernate.cfg.ImprovedNamingStrategy</prop>
<prop key="hibernate.connection.charSet">UTF-8</prop>
<prop key="hibernate.connection.useUnicode">true</prop>
<prop key="hibernate.connection.characterEncoding">UTF-8</prop>
<prop key="hibernate.show_sql">true</prop>
<prop key="hibernate.format_sql">true</prop>
<prop key="hibernate.transaction.flush_before_completion">true</prop>
<prop key="hibernate.transaction.auto_close_session">true</prop>
<prop key="hibernate.connection.release_mode">auto</prop>
</props>
</property>
</bean>
<bean id="transactionManager"
class="org.springframework.transaction.jta.JtaTransactionManager"></bean>
<tx:annotation-driven transaction-manager="transactionManager"/>
</beans>

这是我的服务类:

package testspring.view;

import javax.persistence.EntityManager;
import javax.persistence.PersistenceContext;

import oracle.jbo.client.Configuration;

import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;

import testspring.adfmodel.AppModuleImpl;

import testspring.model.Regions;


@Service
public class HelloBS {
@PersistenceContext
private EntityManager entityManager;

public HelloBS() {
super();
}

@Transactional()
public void doSomething() {
AppModuleImpl am = null;
String amDef = "testspring.adfmodel.AppModule";
String config = "AppModuleLocal";

am = (AppModuleImpl)Configuration.createRootApplicationModule(amDef, config);
am.insertRegions("ADF");

Regions region = new Regions();
region.setRegionName("JPA");
entityManager.persist(region);
}
}

我想补充的是,我使用 EJB 尝试了相同的场景。 Beans,它工作得很好。

最佳答案

您正在寻找的是在两个环境之间共享相同的 java.sql.Connection。

我认为您不能将连接传递给 ADF BC,因为 AM 透明地管理它们的连接,但您可以使用 ADF BC 创建的连接并将其传递给 Spring。但是我不确定 spring 是否可以像这样工作——你必须咨询比我最近有 spring 经验的人。

您当然可以在同一个事务中使用 ADF BC 和 JDBC。

关于java - 如何在 Spring 服务的 @Transactional 方法中实现 Oracle ADF ApplicationModule 和 JPA 之间的共享事务?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37462506/

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