重庆分公司,新征程启航
为企业提供网站建设、域名注册、服务器等服务
若以解耦的方式进行访问,组件框架之间相互独立,能够独自正常运行,不进行依赖操作。如下图:
其中获取Session和Application的方法返回的均是Map,而获取Request的方法返回的是Object,需要转成Map。实际上,通过这种方式,是依赖于Map来进行存取的。
以下为代码实例:
if(username.equals("admin") && password.equals("123456") ) { // 获取Session,返回map
Mapsession = ActionContext.getContext().getSession();
session.put("currentUser", username);
// 获取Request,返回Object
Map request = (Map) ActionContext.getContext().get("request");
request.put("name", "ycz");
// 获取Application,返回Map
Mapapplication = ActionContext.getContext().getApplication();
application.put("word","事与愿违");
return SUCCESS;
}
然后在页面中可以直接取出Map中的值进行使用:
若以耦合的方式访问,组件框架之间相互依赖,缺少其中一个组件则可能无法正常运行。如下图:
这里返回的就不再是Map了,而是需要的各种类型,在页面中需要从对应的域中来取。代码如下:
if(username.equals("admin") && password.equals("123456") ) { // 获取Request
HttpServletRequest request = ServletActionContext.getRequest();
request.setAttribute("address", "四川成都");
// 获取Session
HttpSession session = ServletActionContext.getRequest().getSession();
session.setAttribute("user", username);
// 获取
ServletContext context = ServletActionContext.getServletContext();
context.setAttribute("name", "程志毅");
return SUCCESS;
}
然后在页面中从各个域中取出需要的值即可:
你是否还在寻找稳定的海外服务器提供商?创新互联www.cdcxhl.cn海外机房具备T级流量清洗系统配攻击溯源,准确流量调度确保服务器高可用性,企业级服务器适合批量采购,新人活动首月15元起,快前往官网查看详情吧