ear プロジェクトでクラスタリングを行いたい。私は、standalone-ha.xml 構成を使用して、クラスタリングでスタンドアロンを実行する 1 つのソリューションを見つけました。以下の記事に従いました。それはうまくいっています。 wildfly9 を使用したドメイン モードでのクラスタリング しかし、ear とステートフルな ejb を備えた ERP プロジェクトを実行したいと考えています。そのため、スタンドアロン モードでクラスタリングを実行します。
私は2台のマシンのIPが異なっています。
1.10.10.10.10 ノード 1
- 20.20.20.20 ノード 2
両方のマシンに wildfly9 があり、テスト目的で、Web コンポーネントを使用してステートフルな ejb プロジェクトのサンプルを 1 つ作成しました。
サーバーを実行するための私のコマンドは次のとおりです。
standalone.bat -c standalone-ha.xml -b 10.10.10.10 -u 230.0.0.4 -Djboss.node.name=node1
と
./standalone.sh -c standalone-ha.xml -b 20.20.20.20 -u 230.0.0.4 -Djboss.node.name=node2
私のプロジェクト Test.war には、ステートフルな ejb と servlet と jsp があります。1) Bank.java は、リモートおよびローカル インターフェイスを実装するステートフルな ejb です。
@Stateful(passivationCapable=true)
public class Bank implements BankRemote,BankLocal {
private int amount=0;
@Override
public boolean withdraw(int amount) {
if(amount<=this.amount){
this.amount-=amount;
return true;
}else{
return false;
}
}
@Override
public void deposit(int amount) {
this.amount+=amount;
}
@Override
public int getBalance() {
return amount;
}}
2)OpenAccount.java はサーブレットです
@WebServlet("/OpenAccount")
public class OpenAccount extends HttpServlet {
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
try{
HttpSession bankSession = request.getSession();
BankRemote bank = (BankRemote) bankSession.getAttribute("remote");
if(bank == null)
{
System.out.println("Session is Null So initialized with new session");
Properties p = new Properties();
/*p.put("jboss.naming.client.ejb.context", true);*/
p.put(Context.URL_PKG_PREFIXES, "org.jboss.ejb.client.naming");
InitialContext context=new InitialContext();
BankRemote b=(BankRemote)context.lookup("java:global/Test/Bank!com.ejb.BankRemote");
request.getSession().setAttribute("remote",b);
}
else
{
System.out.println("Session is present id is :["+bankSession.getId()+"]");
}
request.getRequestDispatcher("/operation.jsp").forward(request, response);
}
catch(Exception e){System.out.println(e);}
3)index.jsp は、サーブレットにリダイレクトする以下の単一行を含むホームページです。
<a href="OpenAccount">Open Account</a>
4) サーブレットから転送された operation.jsp は次のとおりです。
<body>
<form action="operationprocess.jsp">
Enter Amount:<input type="text" name="amount"/><br>
Choose Operation:
Deposit<input type="radio" name="operation" value="deposit"/>
Withdraw<input type="radio" name="operation" value="withdraw"/>
Check balance<input type="radio" name="operation" value="checkbalance"/>
<br>
<input type="submit" value="submit">
</form>
</body>
4) operationprocess.jsp は
<body>
<%
try
{
BankRemote remote=(BankRemote)session.getAttribute("remote");
String operation=request.getParameter("operation");
String amount=request.getParameter("amount");
if(remote != null)
{if(operation!=null){
try{
if(operation.equals("deposit"))
{
remote.deposit(Integer.parseInt(amount));
out.print("Amount successfully deposited!");
}
else
{
if(operation.equals("withdraw")){
boolean status=remote.withdraw(Integer.parseInt(amount));
if(status){
out.print("Amount successfully withdrawn!"); }
else{
out.println("Enter less amount"); }
}else{
out.println("Current Amount: "+remote.getBalance());
}
}
}catch(NumberFormatException numex){
out.println("Number is not valid");}
}
}
else
{out.print("Session is null"); }
}catch(Exception ee){
System.out.println("in jsp exception");
ee.printStackTrace();}
%>
<hr/>
<jsp:include page="operation.jsp"></jsp:include>
</body>
5) web.xml に含まれるもの
<distributable/>
クラスタリングを有効にするためのタグ。
6) クラスパスにも jboss-ejb-client.properties があります
remote.clusters=ejb
remote.cluster.ejb.connect.options.org.xnio.Options.SASL_POLICY_NOANONYMOUS=false
remote.cluster.ejb.connect.options.org.xnio.Options.SSL_ENABLED=false
これらすべてを使用して、両方のサーバーに Test.war をデプロイし、apache_mode_cluster 10.10.10.10/Test/ でアクセスしようとしました。それはejbを呼び出して出力を提供しますが、
1) 10.10.10.10 サーバーをシャットダウンし、ブラウザーを更新します (セッションを維持するためのブラウザー履歴をクリアしません)。
2) 10.10.10.10 がシャットダウンされ、履歴を消去し、再度 URL 10.10.10.10 にアクセスして、20.20.20.20 サーバー (つまり node2) にリダイレクトしてテストし、正常に実行されます。ただし、セッションは複製されません。
私を助けてください。standalone-ha.xml -- サブシステムの infinispan は次のとおりです。
<cache-container name="server" default-cache="default" module="org.wildfly.clustering.server" aliases="singleton cluster">
<transport lock-timeout="60000"/>
<replicated-cache name="default" mode="SYNC">
<transaction mode="BATCH"/>
</replicated-cache>
</cache-container>
<cache-container name="web" default-cache="dist" module="org.wildfly.clustering.web.infinispan">
<transport lock-timeout="60000"/>
<distributed-cache name="dist" mode="ASYNC" owners="2" l1-lifespan="0">
<locking isolation="REPEATABLE_READ"/>
<transaction mode="BATCH"/>
<file-store/>
</distributed-cache>
</cache-container>
<cache-container name="ejb" default-cache="dist" module="org.wildfly.clustering.ejb.infinispan" aliases="sfsb">
<transport lock-timeout="60000"/>
<distributed-cache name="dist" mode="ASYNC" owners="2" l1-lifespan="0">
<locking isolation="REPEATABLE_READ"/>
<transaction mode="BATCH"/>
<file-store/>
</distributed-cache>
</cache-container>