import org.jie.server.action.StandardAction;
import javax.servlet.http.HttpServletRequest;
class TestAction extends StandardAction {
public Object process(HttpServletRequest request, Object arg1) throws Exception {
return "Hello World";
}
}
import org.jie.server.action.StandardAction;
import javax.servlet.http.HttpServletRequest;
//实现一个加法运算
class AddAction extends StandardAction {
public Object process(HttpServletRequest request, Object arg1) throws Exception {
Object[] args = (Object[])arg1;
return ((Integer)args[0]).add((Integer)args[1]);
}
}
如果Action在处理的时候发生异常,JieServer会将异常统一转化成ApplicationException,并传递给客户端,客户端可以通过调用:
getErrorClassName() 返回原先Exception或者Error的类名 getMessage() 返回原先Exception或者Error的Message getErrorStackTrace() 返回原先Exception或者Error的StackTrace printStackTrace() 打印原先Exception或者Error的StackTrace 建议 在Session中只存放当前用户的认证信息,其他数据可以保留在客户端上,以便节约服务器内存,充分利用客户端资源。 系统最好遵循MVC原则,Model中只包含数据,以便进行传递。本文地址:http://com.8s8s.com/it/it11166.htm