| /* |
| * Copyright (c) 2017, 2020 Oracle and/or its affiliates. All rights reserved. |
| * |
| * This program and the accompanying materials are made available under the |
| * terms of the Eclipse Public License v. 2.0, which is available at |
| * http://www.eclipse.org/legal/epl-2.0. |
| * |
| * This Source Code may also be made available under the following Secondary |
| * Licenses when the conditions for such availability set forth in the |
| * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, |
| * version 2 with the GNU Classpath Exception, which is available at |
| * https://www.gnu.org/software/classpath/license.html. |
| * |
| * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 |
| */ |
| |
| /* |
| * To change this template, choose Tools | Templates |
| * and open the template in the editor. |
| */ |
| |
| package com.acme; |
| |
| import java.sql.*; |
| import javax.ejb.*; |
| import jakarta.jms.*; |
| import javax.sql.DataSource; |
| import javax.naming.InitialContext; |
| import jakarta.annotation.Resource; |
| |
| /** |
| * |
| * @author marina vatkina |
| */ |
| |
| @Singleton |
| public class MyBean { |
| |
| private static final String XA_RESOURCE = "jdbc/xa"; |
| |
| @Resource(name="jms/MyQueueConnectionFactory", mappedName="jms/ejb_mdb_QCF") |
| QueueConnectionFactory fInject; |
| |
| @Resource(mappedName="jms/ejb_mdb_Queue") |
| Queue qInject; |
| |
| public void record(String msg) throws Exception { |
| System.out.println("Adding msg: " + msg); |
| |
| InitialContext initCtx = new InitialContext(); |
| DataSource ds = (DataSource) initCtx.lookup(XA_RESOURCE); |
| |
| String insertStatement = "insert into messages values ( ? )"; |
| java.sql.Connection c = ds.getConnection(); |
| PreparedStatement ps = c.prepareStatement(insertStatement); |
| |
| ps.setString(1, msg); |
| ps.executeUpdate(); |
| ps.close(); |
| c.close(); |
| } |
| |
| public int verifyxa() throws Exception { |
| InitialContext initCtx = new InitialContext(); |
| DataSource ds = (DataSource) initCtx.lookup(XA_RESOURCE); |
| |
| return verify(ds, "student", 2) + verify(ds, "messages", 1); |
| } |
| |
| public int verify(DataSource ds, String table, int columns) throws Exception { |
| String selectStatement = "select * from " + table; |
| java.sql.Connection c = ds.getConnection(); |
| PreparedStatement ps = c.prepareStatement(selectStatement); |
| ResultSet rs = ps.executeQuery(); |
| int result = 0; |
| while (rs.next()) { |
| result++; |
| StringBuffer buf = new StringBuffer(); |
| for (int i = 1; i <= columns; i++) { |
| buf.append(": " + rs.getString(i)); |
| } |
| System.out.println("Found: " + buf.toString()); |
| } |
| rs.close(); |
| ps.close(); |
| c.close(); |
| |
| return result; |
| } |
| |
| public boolean testtwo(int id, boolean sendMessage) throws Exception { |
| InitialContext initCtx = new InitialContext(); |
| DataSource ds2 = (DataSource) initCtx.lookup(XA_RESOURCE); |
| |
| return test(id, ds2, true, sendMessage); |
| } |
| |
| private boolean test(int id, DataSource ds, boolean useFailureInducer) throws Exception { |
| return test(id, ds, useFailureInducer, true); |
| } |
| |
| private boolean test(int id, DataSource ds, boolean useFailureInducer, boolean sendMessage) throws Exception { |
| String insertStatement = "insert into student values ( ? , ? )"; |
| java.sql.Connection c = ds.getConnection(); |
| PreparedStatement ps = c.prepareStatement(insertStatement); |
| |
| QueueConnection qConn = null; |
| QueueSession qSession = null; |
| QueueSender qSender = null; |
| if (sendMessage) { |
| qConn = fInject.createQueueConnection(); |
| qSession = qConn.createQueueSession(false, Session.AUTO_ACKNOWLEDGE); |
| qSender = qSession.createSender(qInject); |
| } |
| |
| if (useFailureInducer) { |
| com.sun.jts.utils.RecoveryHooks.FailureInducer.activateFailureInducer(); |
| com.sun.jts.utils.RecoveryHooks.FailureInducer.setWaitPoint(com.sun.jts.utils.RecoveryHooks.FailureInducer.PREPARED, 60); |
| } |
| |
| for (int i = 0; i < 3; i++) { |
| System.err.println("Call # " + (i + 1)); |
| ps.setString(1, "BAA" + id + i); |
| ps.setString(2, "BBB" + id + i); |
| ps.executeUpdate(); |
| |
| if (sendMessage) { |
| System.err.println("Message # " + (i + 1)); |
| TextMessage tMessage = qSession.createTextMessage("MAA" + id + i); |
| qSender.send(tMessage); |
| } |
| |
| if (!useFailureInducer) { |
| try { |
| Thread.sleep(7000); |
| } catch (Exception e) { |
| e.printStackTrace(); |
| } |
| } |
| } |
| |
| ps.close(); |
| c.close(); |
| if (sendMessage) { |
| qSession.close(); |
| qConn.close(); |
| } |
| System.err.println("Insert successfully"); |
| |
| return true; |
| } |
| |
| } |