| /* |
| * Copyright (c) 2017, 2018 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 |
| */ |
| |
| package com.sun.s1asdev.jdbc.simple.ejb; |
| |
| import javax.ejb.*; |
| import javax.naming.*; |
| import javax.sql.*; |
| import java.rmi.*; |
| import java.util.*; |
| import java.sql.*; |
| import com.sun.enterprise.connectors.ConnectorRuntime; |
| |
| public class SimpleBMPBean |
| implements EntityBean |
| { |
| |
| protected DataSource ds; |
| |
| public void setEntityContext(EntityContext entityContext) { |
| Context context = null; |
| try { |
| context = new InitialContext(); |
| ds = (DataSource) context.lookup("java:comp/env/DataSource"); |
| } catch (NamingException e) { |
| throw new EJBException("cant find datasource"); |
| } |
| System.out.println("[**SimpleBMPBean**] Done with setEntityContext...."); |
| } |
| |
| public Integer ejbCreate() throws CreateException { |
| return new Integer(1); |
| } |
| |
| /* Get 10 connections in a bunch and then close them*/ |
| public boolean test1( int numRuns ) { |
| boolean passed = true; |
| Connection[] conns = new Connection[10]; |
| for( int i = 0; i < numRuns; i++ ) { |
| try { |
| conns[i] = ds.getConnection(); |
| } catch (Exception e) { |
| passed = false; |
| } /*finally { |
| if ( conn != null ) { |
| try { |
| conn.close(); |
| } catch( Exception e1) {} |
| } |
| } */ |
| } |
| |
| for (int i = 0 ; i < numRuns;i++ ) { |
| try { |
| conns[i].close(); |
| } catch( Exception e) { |
| passed = false; |
| } |
| } |
| return passed; |
| } |
| |
| /* Get a single connection and close it */ |
| public boolean test2() { |
| Connection conn = null; |
| boolean passed = true; |
| try { |
| conn = ds.getConnection(); |
| } catch (Exception e) { |
| passed = false; |
| } finally { |
| if ( conn != null ) { |
| try { |
| conn.close(); |
| } catch( Exception e1) {} |
| } |
| } |
| |
| return passed; |
| } |
| |
| /* Use the getConnection API in the ConnectorRuntime |
| * Use a jdbc resource jndi name |
| */ |
| public boolean test3() { |
| System.out.println("---------------Running test3---------------"); |
| Connection con = null; |
| ConnectorRuntime runtime = ConnectorRuntime.getRuntime(); |
| |
| try { |
| con = runtime.getConnection( "jdbc/s1qeDB" ); |
| } catch( SQLException sqle ) { |
| sqle.printStackTrace(); |
| return false; |
| } |
| |
| return true; |
| } |
| |
| /* Use the getConnection API in the ConnectorRuntime |
| * Use a PMF resource |
| */ |
| public boolean test4() { |
| System.out.println("---------------Running test4-------------"); |
| Connection con = null; |
| ConnectorRuntime runtime = ConnectorRuntime.getRuntime(); |
| |
| try { |
| con = runtime.getConnection( "jdo/s1qePM" ); |
| } catch( Exception sqle ) { |
| sqle.printStackTrace(); |
| return false; |
| } |
| |
| return true; |
| } |
| |
| /* Use the getConnection API in the ConnectorRuntime |
| * Use a jdbc resource jndi name |
| */ |
| public boolean test5() { |
| System.out.println("---------------Running test5---------------"); |
| Connection con = null; |
| ConnectorRuntime runtime = ConnectorRuntime.getRuntime(); |
| |
| try { |
| con = runtime.getConnection( "jdbc/s1qeDB", "pbpublic", "pbpublic" ); |
| } catch( Exception sqle ) { |
| sqle.printStackTrace(); |
| return false; |
| } |
| |
| return true; |
| } |
| |
| /* Use the getConnection API in the ConnectorRuntime |
| * Use a PMF resource |
| */ |
| public boolean test6() { |
| System.out.println("---------------Running test6-------------"); |
| Connection con = null; |
| ConnectorRuntime runtime = ConnectorRuntime.getRuntime(); |
| |
| try { |
| con = runtime.getConnection( "jdo/s1qePM", "pbpublic", "pbpublic" ); |
| } catch( Exception sqle ) { |
| sqle.printStackTrace(); |
| return false; |
| } |
| |
| return true; |
| } |
| |
| /* Use the getConnection API in the ConnectorRuntime |
| * Use a jdbc resource jndi name |
| */ |
| public boolean test7() { |
| System.out.println("---------------Running test7---------------"); |
| Connection con = null; |
| ConnectorRuntime runtime = ConnectorRuntime.getRuntime(); |
| |
| try { |
| con = runtime.getConnection( "jdbc/notpresent" ); |
| } catch( Exception sqle ) { |
| System.out.println("Caught expected exception"); |
| sqle.printStackTrace(); |
| return true; |
| } |
| |
| return false; |
| } |
| |
| /* Use the getConnection API in the ConnectorRuntime |
| * Use a PMF resource |
| */ |
| public boolean test8() { |
| System.out.println("---------------Running test8-------------"); |
| Connection con = null; |
| ConnectorRuntime runtime = ConnectorRuntime.getRuntime(); |
| |
| try { |
| con = runtime.getConnection( "jdo/notpresent" ); |
| } catch( Exception sqle ) { |
| System.out.println("Caught expected exception"); |
| sqle.printStackTrace(); |
| return true; |
| } |
| |
| return false; |
| } |
| |
| public void ejbLoad() {} |
| public void ejbStore() {} |
| public void ejbRemove() {} |
| public void ejbActivate() {} |
| public void ejbPassivate() {} |
| public void unsetEntityContext() {} |
| public void ejbPostCreate() {} |
| } |