strusts 2+EJB 3統合、記録しておきます・・・


ejbに触れたばかりで、今日は一日中ejb 3+struts 2で、振り回されて死んで、googleもあまり実用的なdemoを発見していません.ノートを出すのは、初心者の友达に役立つかもしれません.
例を単純化して、結合を実現させるといいです.の
ハローワールドがいいと言われていますが、私もハローワールドを書きましょう.の
1、新規プロジェクト
2,jbossの下のclientディレクトリのすべてのパッケージをプロジェクトlibにコピーします(具体的に何が必要なのか分かりませんが、それにかかわらず、先にすべてコピーしてください.教えてください.ありがとうございます)
3、クライアント呼び出し用のインタフェースクラスを新規作成します.
Hello.java

/**
 *     
 * @author biaowen
 *
 */
public interface Hello {
	
	public String sayHello(String name);
}

4,Helloインタフェース実装クラス
HelloBean.java

import javax.ejb.Remote;
import javax.ejb.Stateless;

import org.biaowen.service.Hello;

/**
 * Hello   
 * @author biaowen
 *
 */
@Stateless
@Remote(Hello.class)
public class HelloBean implements Hello {

	public String sayHello(String name) {
		
		return "Hello " + name;
	}

}

EJBサービスは完了しました.jarをエクスポートし、jbossに配置します.コントロールパネルに表示されます.
HelloBean/remote - EJB3.x Default Remote Business Interface
HelloBean/remote-org.biaowen.service.Hello - EJB3.x Remote Business Interface
サービス側の導入が成功したことを示します.
次にstruts 2クライアントを実装します.
1、struts 2に必要なcopyをプロジェクトlibにパッケージします.struts 2パッケージのリストは貼られず、添付ファイルを直接ダウンロードする必要があります.
2、web.xmlを構成し、ejbと何のカップリングもなく、コードリスト:
web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="2.4" 
	xmlns="http://java.sun.com/xml/ns/j2ee" 
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
	xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee 
	http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
	
		<display-name>struts2</display-name>
		
		<filter>
			<filter-name>struts2</filter-name>
			<filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>
		</filter>
		
		<filter-mapping>
			<filter-name>struts2</filter-name>
			<url-pattern>/*</url-pattern>
		</filter-mapping>
		
		<welcome-file-list>
			<welcome-file>index.jsp</welcome-file>
		</welcome-file-list>
		
</web-app>

3,struts.xmlリスト:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
    "http://struts.apache.org/dtds/struts-2.0.dtd">
	
<struts>
	
	<constant name="struts.ui.theme" value="simple" />
    <constant name="struts.i18n.reload" value="true" />
    <constant name="struts.devMode" value="true" />
    <constant name="struts.configuration.xml.reload" value="true" />
    <constant name="struts.enable.SlashesInActionNames" value="true" />
    <constant name="struts.custom.i18n.resources" value="ApplicationResources" />
    <constant name="struts.serve.static.browserCache" value="false" />
    
	<package name="default" extends="struts-default">
		<action name="hello" class="org.biaowen.struts.action.HelloAction">
			<result>hello.jsp</result>
		</action>
	</package>
	
</struts> 

4.次に、EJBクライアントとしてアクションを作成します.コードは次のとおりです.
HelloAction.java

import java.util.Properties;

import javax.naming.InitialContext;
import javax.naming.NamingException;

import org.biaowen.ejb.service.Hello;

import com.opensymphony.xwork2.ActionSupport;

public class HelloAction extends ActionSupport {

	private static final long serialVersionUID = -7799123599902957679L;
	
	//         
	private String message;
	
	public String execute() {
		
		Properties props = new Properties();
		props.setProperty("java.naming.factory.initial",
				"org.jnp.interfaces.NamingContextFactory");
		props.setProperty("java.naming.provider.url", "localhost:1099");
		Hello hello = null;
		try {
			InitialContext ctx = new InitialContext(props);
			hello = (Hello)ctx.lookup("HelloBean/remote");
		} catch (NamingException e) {
			e.printStackTrace();
		}
		
		message = hello.sayHello("biaowen");
		
		return SUCCESS;
	}

	public String getMessage() {
		return message;
	}
	
}

5,webページ,返されるhelloworld情報を表示するために使用する:
hello.jsp

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@taglib prefix="s" uri="/struts-tags"%>
<html>
	<head>
		<title>ejb+Struts2  Demo</title>
	</head>
	<body>
		${message}
	</body>
</html>

6、ほぼ完成しましたが、今運転を開始すると異常を投げます.
java.lang.NoClassDefFoundError: javax/security/jacc/PolicyContextException
添付ファイルから直接取得するパッケージjavaee.jarも必要です.(注意:javaee.jarのjavax.security.jacc.*だけを残しておけばいいです.そうしないと、jbossのクライアントパッケージと衝突し、ページにアクセスできなくなります.具体的には衝突しても分かりません.ハ).
OK..セカンダリ起動で、http://localhost:8080/hello.action 终わります...
添付ファイルにはstruts 2パッケージとjavaee.jarのみが含まれています.他のjbossパッケージは自分でインポート(%JBOSS_HOME%client).プロジェクトはeclipseで直接リカバリできます.