FileDocCategorySizeDatePackage
Main.javaAPI DocJBoss 4.2.13041Fri Jul 13 20:55:30 BST 2007org.jboss.tutorial.dirbyresource

Main

public class Main extends Object
Comment
author
Bill Burke
version
$Revision: 60233 $

Fields Summary
Constructors Summary
Methods Summary
public static javax.naming.InitialContextgetInitialContext()

      Hashtable props = getInitialContextProperties();
      return new InitialContext(props);
   
private static java.util.HashtablegetInitialContextProperties()

      Hashtable props = new Hashtable();
      props.put("java.naming.factory.initial", "org.jnp.interfaces.LocalOnlyContextFactory");
      props.put("java.naming.factory.url.pkgs", "org.jboss.naming:org.jnp.interfaces");
      return props;
   
public static voidmain(java.lang.String[] args)

      EJB3StandaloneBootstrap.boot(null);

      EJB3StandaloneDeployer deployer = EJB3StandaloneBootstrap.createDeployer();
      deployer.getDeployDirsByResource().add("META-INF/persistence.xml");

      deployer.create();
      deployer.start();

      InitialContext ctx = getInitialContext();
      CustomerDAOLocal local = (CustomerDAOLocal)ctx.lookup("CustomerDAOBean/local");
      CustomerDAORemote remote = (CustomerDAORemote)ctx.lookup("CustomerDAOBean/remote");

      System.out.println("----------------------------------------------------------");

      int id = local.createCustomer("Gavin");
      Customer cust = local.findCustomer(id);
      System.out.println("Successfully created and found Gavin from @Local interface");

      id = remote.createCustomer("Emmanuel");
      cust = remote.findCustomer(id);
      System.out.println("Successfully created and found Emmanuel from @Remote interface");
      System.out.println("----------------------------------------------------------");

      deployer.stop();
      deployer.destroy();
      EJB3StandaloneBootstrap.shutdown();