- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想调用一个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/
我刚刚将一个应用程序模块迁移为一个可导入的库。 我正在尝试使测试正常工作,就像它们以前工作的那样,但我收到此错误: Error: Can't resolve all parameters for Ap
Angular 的新手。我的应用程序包含 1 个服务和 3 个组件。编译成功。我收到此错误并且不知道出了什么问题: Uncaught Error: Can't resolve all paramete
我想在没有 CLI 的情况下创建 Angular 应用程序。之后我得到一个错误: 错误:无法解析 ApplicationModule 的所有参数:(?)。 项目包含几个文件,主要是: • main.t
我可以更改存储在应用程序模块中的值并将其返回到新 Activity 或其他地方吗?我已经尝试过这段代码,我希望自从我调用 DaggerExampleBuilder.builde().appCompon
我试图在托管 bean 类中获取应用程序模块,这样我就可以检索当前的 ViewObject 并更改它的属性。 我正在使用 DWR,因此我可以将 blob 图像作为参数从 JavaScript 传递到此
您好,我面临的问题似乎是随机出现的。我的所有设置都很顺利。 我有几个用 webpack 编译的 Angular 应用程序。在 AOT 中一切正常,但在 JIT 上崩溃。这是因为编译器无法理解注释。 c
我想调用一个Oracle ADF的方法ApplicationModule来自@Transactional Spring的方法Service我在哪里调用 JPA EntityManager方法也是如此。
我是一名优秀的程序员,十分优秀!