⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 helloclient.java.original

📁 这是《精通EJB3.0》一书中的代码
💻 ORIGINAL
字号:
package examples.session.stateless;

import javax.naming.Context;
import javax.naming.InitialContext;

/**
 * This class is an example of client code which invokes
 * methods on a simple, remote stateless session bean.
 */
public class HelloClient {

	public static void main(String[] args) throws Exception {
		/*
		 * Obtain the JNDI initial context.
		 *
		 * The initial context is a starting point for
		 * connecting to a JNDI tree. We choose our JNDI
		 * driver, the network location of the server, etc
		 * by passing in the environment properties.
		 */

		System.out.println("about to create initialcontext");
		//Context ctx = new InitialContext(System.getProperties());
		Context ctx = new InitialContext();

		//System.out.println ("Trying to get the name of this context: " + ctx.getNameInNamespace());

		System.out.println("Got initial context ... yeah ");

		/*
		 * Get a reference to a bean instance, looked up by class name
		 */
		Hello hello = (Hello) ctx.lookup("HelloBean");

		/*
		 * Call the hello() method on the bean.
		 * We then print the result to the screen.
		 */
		System.out.println(hello.hello());
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -