我可以成功地使Activiti与JtaProcessEngineConfiguration一起使用,并与CdiStandaloneProcessEngineConfiguration一起使用。

但我无法使CdiJtaProcessEngineConfiguration工作,我的配置示例如下

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans <a href="http://www.springframework.org/schema/beans/spring-beans.xsd">

" rel="nofollow">http://www.springframework.org/schema/beans/spring-beans.xsd">

</a>    <bean id="transactionManager" class="org.springframework.jndi.JndiObjectFactoryBean">
        <property name="jndiName" value="java:comp/TransactionManager"></property>
        <property name="resourceRef" value="true" />
    </bean>

    <bean id="processEngineConfiguration" class="org.activiti.cdi.CdiJtaProcessEngineConfiguration">
        <property name="transactionManager" ref="transactionManager" />
        <property name="transactionsExternallyManaged" value="true" />

        <property name="dataSourceJndiName" value="openejb:Resource/jdbc/AppDS" />
        <property name="databaseSchemaUpdate" value="false"/>

        <property name="jobExecutorActivate" value="false"/>
        <property name="asyncExecutorEnabled" value="true"/>
        <property name="asyncExecutorActivate" value="true"/>
        <property name="history" value="audit"/>
    </bean>
</beans>


错误是


javax.naming.NameNotFoundException:名称[TransactionManager]不是
在此上下文中绑定。找不到[TransactionManager]。


并且堆栈跟踪如下

2016-11-29 13:47:37 ERROR ProcessEngines:174 - Exception while initializing process engine: Error creating bean with name 'processEngineConfiguration' defined in resource loaded through InputStream: Cannot resolve reference to bean 'transactionManager' while setting bean property 'transactionManager';
nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'transactionManager' defined in resource loaded through InputStream: Invocation of init method failed;
nested exception is javax.naming.NameNotFoundException: Name [TransactionManager] is not bound in this Context. Unable to find [TransactionManager].
    org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'processEngineConfiguration' defined in resource loaded through InputStream: Cannot resolve reference to bean 'transactionManager' while setting bean property 'transactionManager';
nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'transactionManager' defined in resource loaded through InputStream: Invocation of init method failed;
nested exception is javax.naming.NameNotFoundException: Name [TransactionManager] is not bound in this Context. Unable to find [TransactionManager].
        at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveReference(BeanDefinitionValueResolver.java:359)
        at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveValueIfNecessary


我不确定下一步该怎么做

我正在使用的应用服务器是Tomee-plus 1.7.3

干杯
亚当

[编辑1]请注意,当应用程序就绪时,您需要加载JtaProcessEngineConfiguration手册,但是CdiStandaloneProcessEngineConfiguration和CdiJtaProcessEngineConfiguration是通过ActivitiExtension类自动加载的。

[编辑2]
在扩展的JtaProcessEngineConfiguration(不带cdi)中按以下方式(根据@Romain Manni-Bucau建议)查找事务管理器时

    try {
        InitialContext initialContext = new InitialContext();
        try {
            transactionManager = (TransactionManager) initialContext.lookup("openejb:Resource/TransactionManager");
        } finally {
            initialContext.close();
        }

    } catch (NamingException e) {
        LOGGER.error(e.getMessage(), e);
    }


我得到以下异常跟踪

2016-12-06 09:16:35 ERROR TestJtaProcessEngineConfiguration:29 - Name     "Resource/TransactionManager" not found.
javax.naming.NameNotFoundException: Name "Resource/TransactionManager" not found.
at org.apache.openejb.core.ivm.naming.IvmContext.federate(IvmContext.java:199)
at org.apache.openejb.core.ivm.naming.IvmContext.lookup(IvmContext.java:151)
at org.apache.openejb.core.ivm.naming.IvmContext.lookup(IvmContext.java:119)
at javax.naming.InitialContext.lookup(InitialContext.java:417)
<snip>


[编辑3]尝试使用“ java.naming.factory.initial = org.apache.openejb.core.OpenEJBI‌nitialContextFactory”会导致以下堆栈跟踪。

Cannot instantiate class: org.apache.openejb.core.OpenEJBInitialContextFactory [Root exception is java.lang.ClassNotFoundException: org.apache.openejb.core.OpenEJBInitialContextFactory]
at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:674)
at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:313)
at javax.naming.InitialContext.init(InitialContext.java:244)
at javax.naming.InitialContext.<init>(InitialContext.java:216)


但是使用“ openejb:TransactionManager”的jndi字符串有效

成功
工作配置使用jndiName属性,如下所示。

<property name="jndiName" value="openejb:TransactionManager"></property>

最佳答案

使用openejb:Resource / TransactionManager(在容器启动后(甚至在进行任何部署之前)立即可用)怎么样?这将使任何代码都依赖于事务管理器而不依赖于启动生命周期。

10-07 12:51