NC部署到WAS环境后执行预警报错

NC部署到WAS环境后执行预警报错

  • 部署到was环境后,jdbc执行更新报错问题

部署到was环境后,jdbc执行更新报错问题

NC预警程序在tomcat服务器中部署测试没问题,但是部署到was环境后通过jdbc执行更新操作(commit、rollback、setAutoCommit(true))报DSRA9350E异常,具体代码如下:
public void updateData() throws BusinessException,
SQLException {
Connection con = null;
PreparedStatement ps = null;
String sql = "update table set pk= 数值 where pk主键 is null and 条件2 ;
try {
con = getConnection();
ps = con.prepareStatement(sql);
ps.executeUpdate();
con.commit();
} catch (Exception e) {
e.printStackTrace();
throw new BusinessException(e);
} finally {
if (ps != null) {
ps.close();
}
if (con != null) {
con.close();
}
}
}
报错导致的原因:JDBC 2.0的标准中指出,当数据库连接在分布式交易环境中使用的时候,应用程序不能调用以下的3种方法:
Connection.commit
Connection.rollback
Connection.setAutoCommit(true)
这是因为交易管理器(在本例中就是WAS)在分布式交易环境中控制着交易的开始,提交和回滚。应用程序调用以上3个方法中的任意一个都会干扰交易管理器控制交易边界。
因此,在NC中建议使用BaseDAO来进行更新操作,以避免出现DSRA9350E异常。

你可能感兴趣的:(IT,NC,WEB后台,WEB前端)