"Operation Connection.commit is not allowed during a global transaction" 在 jax-ws 服务中

"Operation Connection.commit is not allowed during a global transaction" in jax-ws service

我有一个 jax-ws 服务,但是当我在其中 运行 我的休眠事务时,我得到以下异常:

Caused by: java.sql.SQLException: DSRA9350E: Operation Connection.commit is not allowed during a global transaction.
    at com.ibm.ws.rsadapter.jdbc.WSJdbcConnection.commit(WSJdbcConnection.java:1104)
    at org.hibernate.transaction.JDBCTransaction.commitAndResetAutoCommit(JDBCTransaction.java:170)
    at org.hibernate.transaction.JDBCTransaction.commit(JDBCTransaction.java:146)
    ... 47 more

我没有使用 XA 数据源,客户端是一个未连接到任何数据库的 junit。我没有对这个 Web 服务做任何我知道的事情来让它认为我想要一个全局事务。我没有在 websphere 中设置任何策略集,事实上,当我查看管理控制台时,我看到 none set.

我的休眠事务使用@Transactional。我的网络服务是这样注释的:

@WebService(targetNamespace = "http://my.domain.enote")
public interface IQueueWS {

@WebMethod(operationName="enqueueCandidate")
public List<String> enqueueCandidate(Candidate candidate);

@WebMethod(operationName="enqueueCandidates")
public List<String> enqueueCandidates(List<Candidate> candidates);

}

在我的实施的顶部class:

@Stateless
@WebService(
        portName = "QueueWSPort",
        serviceName = "QueueWSService",
        targetNamespace = "http://gov.usdoj.afms.enote",
        endpointInterface = "gov.usdoj.afms.enote.webservices.queue.IQueueWS")
public class QueueWS {

然后在客户端:

        Service client = Service.create(
            new URL("http://localhost:9080/eNotesApp/QueueWSService?wsdl"),
            new QName("http://gov.usdoj.afms.enote", "QueueWSService"));

    IQueueWS queue = client.getPort(IQueueWS.class);
    Candidate c = new Candidate();
    //blah blah, deleted for brevity
    List<String> errors = queue.enqueueCandidate(c);

我曾经使用 eclipse 的 wsgen 向导来生成服务,所以这是我第一次尝试只使用注释......它们的工作范围是控制使用正确的参数到达它需要的位置.正是这种事务性的事情阻碍了我们。

我认为您的 @WebService 是事务性的是因为 @Stateless 注释。在 EJB 3.0 中,默认 transaction attribute for all EJB 3.0 applications is REQUIRED.

如果您不想这样,您可以向无状态会话 bean 添加一个注释 class,其中:

@Stateless
@TransactionAttribute(TransactionAttributeType.NOT_SUPPORTED)
@WebService(
...

我认为这将使您能够按照您描述的那样在较低级别的应用程序中执行事务逻辑,并且不会启动全局事务。