📄 client.java
字号:
package examples.dualpersistent;
import java.rmi.RemoteException;
import java.util.Collection;
import java.util.Properties;
import java.util.Vector;
import java.util.Iterator;
import javax.ejb.CreateException;
import javax.ejb.EJBException;
import javax.ejb.FinderException;
import javax.ejb.ObjectNotFoundException;
import javax.ejb.RemoveException;
import javax.naming.Context;
import javax.naming.InitialContext;
import javax.naming.NamingException;
import javax.rmi.PortableRemoteObject;
/**
* This class demonstrates calling an entity EJBean.
* <p>
* <p>
* This class also illustrates how to lookup an EJB home in the JNDI tree.
*
* @author Copyright (c) 1998 by WebLogic, Inc. All Rights Reserved.
* @author Copyright (c) 1998-2000 by BEA Systems, Inc. All Rights Reserved.
*/
public class Client {
private String url;
private AccountHome home;
public Client(String url)
throws NamingException
{
this.url = url;
home = lookupHome();
}
/**
* Create a new account with the given id and balance
*/
private Account createAccount(String id, double balance)
throws CreateException, RemoteException
{
log("Creating account " + id + " with a balance of " +
balance + "...");
Account ac = (Account) PortableRemoteObject.narrow(home.create(id, balance),
Account.class);
log("Account " + id + " successfully created");
return ac;
}
public void example()
throws CreateException, RemoteException, FinderException,
RemoveException
{
int numBeans = 20;
Account [] accounts = new Account [numBeans];
// Create 20 accounts
for (int i=0; i<numBeans; i++) {
accounts [i] = findOrCreateAccount(Integer.toString(i), i * 1000);
}
// print out the account balances
for (int i=0; i<numBeans; i++) {
log("Account: :"+accounts[i].getPrimaryKey()+
" has a balance of "+accounts[i].balance());
}
// find all accounts with a balance > 5000
findBigAccounts(5000.0);
// Remove our accounts
// log("Removing beans...");
// for (int i=0; i<numBeans; i++) {
// accounts[i].remove();
// }
}
/**
* List all accounts with a balance greater than the parameterized amount.
* This finder illustrates a Finder Method that returns a Collection.
*/
private void findBigAccounts(double balanceGreaterThan)
throws RemoteException, FinderException
{
log("\nQuerying for accounts with a balance greater than " +
balanceGreaterThan + "...");
Collection col = home.findBigAccounts(balanceGreaterThan);
if(col.isEmpty()) {
log("No accounts were found with a balance greater that "+balanceGreaterThan);
}
Iterator it = col.iterator();
while (it.hasNext()) {
Account accountGT =
(Account) PortableRemoteObject.narrow(it.next(),Account.class);
log("Account " + accountGT.getPrimaryKey() + "; balance is $" + accountGT.balance());
}
}
/**
* If there already exists an account for this id, we will return
* it. Otherwise we will create a new account.
*/
private Account findOrCreateAccount(String id, double balance)
throws CreateException, RemoteException, FinderException
{
try {
log("Trying to find account with id: "+id);
return (Account) PortableRemoteObject.narrow(home.findByPrimaryKey(id),
Account.class);
} catch (ObjectNotFoundException onfe) {
// the account id does not yet exist so create it.
return (Account) PortableRemoteObject.narrow(home.create(id, balance),
Account.class);
}
}
/**
* Get an initial context into the JNDI tree.
*
* Java2 clients can use the jndi.properties file to set the
* INITIAL_CONTEXT_FACTORY and the PROVIDER_URL
* private Context getInitialContext() throws NamingException {
* return new InitialContext();
* }
*
*
* Using a Properties object will work on JDK 1.1.x and Java2
* clients
*/
private Context getInitialContext() throws NamingException {
try {
// Get an InitialContext
Properties h = new Properties();
h.put(Context.INITIAL_CONTEXT_FACTORY,
"weblogic.jndi.WLInitialContextFactory");
h.put(Context.PROVIDER_URL, url);
return new InitialContext(h);
} catch (NamingException ne) {
log("We were unable to get a connection to the WebLogic server at "+url);
log("Please make sure that the server is running.");
throw ne;
}
}
private static void log(String s) {
System.out.println(s);
}
/**
* Look up the bean's home interface using JNDI.
*/
private AccountHome lookupHome()
throws NamingException
{
Context ctx = getInitialContext();
try {
Object home = ctx.lookup("dualPersistent");
return (AccountHome) PortableRemoteObject.narrow(home, AccountHome.class);
} catch (NamingException ne) {
log("The client was unable to lookup the EJBHome. Please make sure " +
"that you have deployed the ejb with the JNDI name " +
"ejb20-dualPersistent-AccountHome on the WebLogic server at "+url);
throw ne;
}
}
/**
* Runs this example from the command line. Example:
* <p>
* <tt>java examples.ejb20.basic.beanManaged.Client "t3://localhost:7001"</tt>
* <p>
* The parameters are optional, but if any are supplied,
* they are interpreted in this order:
* <p>
* @param url URL such as "t3://localhost:7001" of Server
*/
public static void main(String[] args) throws NamingException {
System.out.println("\nBeginning dualPersistent.Client...\n");
String url = "t3://localhost:7001";
// Parse the argument list
if (args.length != 1) {
System.out.println("Usage: java examples.ejb20.basic.dualPersistent.Client t3://hostname:port");
return;
} else {
url = args[0];
}
Client client = null;
try {
client = new Client(url);
} catch (NamingException ne) {
log("Unable to look up the beans home: " + ne.getMessage());
System.exit(1);
}
try {
client.example();
} catch (Exception e) {
log("There was an exception while creating and using the Accounts.");
log("This indicates that there was a problem communicating with the server: "+e);
}
System.out.println("\nEnd dualPersistent.Client...\n");
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -