常见一个web工程helloword
加入第三方jar包到lib目录
定义一个接口
package com.foshanshop.ejb3;
public interface HelloWorld {
public String SayHello(String name);
}
实现接口,并定义为远程
package com.foshanshop.ejb3.impl;
import com.foshanshop.ejb3.HelloWorld;
import javax.ejb.Remote;
import javax.ejb.Stateless;
@Stateless
@Remote ({HelloWorld.class})
public class HelloWorldBean implements HelloWorld {
public String SayHello(String name) {
int a = 2 + 9;
int b = a - 7;
int c = a + b;
String newname = c + "号" + name + "先生";
return newname +"说:你好!世界,这是我的第一个EJB3哦.hehe";
}
}
将工程打包成jar工程,放到server\all\deploy目录中
新建一个testHelloWord Web工程建立一个index.jsp
<%@ page contentType="text/html; charset=GBK"%>
<%@ page import="com.foshanshop.ejb3.HelloWorld, javax.naming.*, java.util.Properties"%>
<%
Properties props = new Properties();
props.setProperty("java.naming.factory.initial", "org.jnp.interfaces.NamingContextFactory");
props.setProperty("java.naming.provider.url", "localhost:1099");
props.setProperty("java.naming.factory.url.pkgs","org.jboss.naming");
try {
InitialContext ctx = new InitialContext(props);
HelloWorld helloworld = (HelloWorld) ctx.lookup("HelloWorldBean/remote");
out.println(helloworld.SayHello("佛山人"));
} catch (NamingException e) {
e.printStackTrace();
}
%>
部署,并在cmd中起到jboss服务器 run -c all
1.然后再tomcat5.5中的E:\tomcat-5.5.20\shared\classes\com\foshanshop\ejb3放入HelloWorld.class文件
2.在E:\tomcat-5.5.20\shared\lib中放入第三方jar包
3.启动tomcat.
4.在地址栏中输入http://localhost:9090/testhelloword/即可。