首页 > 代码库 > struts中如何查看配置文件中是否存在某个返回值

struts中如何查看配置文件中是否存在某个返回值

1 ActionConfig config =
2     ActionContext.getContext()
3     .getActionInvocation().getProxy().getConfig();
4 ResultConfig resultconfig = 
5     config.getResults().get("string");

 

struts中如何查看配置文件中是否存在某个返回值