Struts2 ActionContext.getContext()方法:获取ActionContext对象

Struts2 的 API 中,ActionContext 的构造方法需要传递一个 Map 类的上下文对象,应用这个构造方法创建 ActionContext 对象非常不方便,所以,通常情况下都是使用 ActionContext 对象提供的 getContext() 方法进行创建。

语法:

public static ActionContext getContext()

参数说明:

  • getContext() 方法是一个静态方法,可以直接调用,它的返回值就是ActionContext,在开发过程中使用此方法创建ActionContext即可。

示例

本示例应用 getContext() 方法获取 ActionContext 对象,关键代码如下:

//获取ActionContext对象
ActionContext context = ActionContext.getContext();

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/21284.html

(0)
上一篇 2021年7月20日
下一篇 2021年7月20日

相关推荐

发表回复

登录后才能评论