使用RMI优于tomcat的最佳方法是什么?
我可以为我的所有应用程序创建全局RMI池或一个RMI连接吗?
答案 0 :(得分:1)
我在包装RMI接口的控制器中使用静态类。 RMI将在服务器端汇集您的连接,您不必在Tomcat中担心它。
答案 1 :(得分:1)
示例RMI
public interface Account
extends java.rmi.Remote {
public double balance(int accountNumber)
throws java.rmi.RemoteException;
}
public class AccountImpl
extends
java.rmi.server.UnicastRemoteObject
implements Account {
public AccountImpl()
throws java.rmi.RemoteException {
super();
}
public double add(int accountNumber)
throws java.rmi.RemoteException {
return 1000.0;
}
}
示例Servlet
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException
{
Account service=request.getSession()!=null ?(Account)request.getSession().getAttribute(loginService.ACCOUNT_SERVICE.name()):null;
service=service!=null?service:getService();
if(service!=null)
{
request.getSession().setAttribute(loginService.ACCOUNT_SERVICE.name(), service);
}
}
}
}