如何更改struts中错误默认返回input InputConfig内methodName跟resultName的使用方法

本文详细解析了Struts2API中InputConfig注解的methodName和resultName属性,包括它们的作用、区别以及如何在方法头部使用注解来改变默认返回的input视图。以toResourceSave()方法为例,展示了如何通过@InputConfig注解自定义未通过验证时的返回视图。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Struts2 API中InputConfig内methodName跟resultName的使用方法

www.MyException.Cn   发布于:2012-08-21 13:00:21   浏览:0次
Struts2 API中InputConfig内methodName和resultName的使用方法
关于Struts2 API中InputConfig内methodName和resultName的使用方法
对于@InputConfig中methodName和resultName的区别很是迷惑.最后在API中找到答案了,通过做实验终于了之.
(1).Marks a action method that if it's not validated by Validationlnterceptor then execute input method or input result.
Annotation usage:The InputConfig annotation can be applied at method level.
Annotation parameters:
Parameter Required  Default Notes
methodName no       (2).execute this method if specific
resultName no       (3).return this result if methodName not specific

(1).当验证方法没有通过时,改变默认返回的input视图
(2).methodName=====>执行指定方法
(3).resultName=====>返回result如果methodName没有指定

Eg:
@InputConfig(methodName="Tqtest",resultName="resultTest")
@InputConfig(methodName="Tqtest",resultName="resultTest") 的作用是改变默认返回的input视图 API中可查
resultName只有在methodName没写如@InputConfig(resultName="resultTest") 时才起做用

 

通过指定methodName即可以修改input的默认返回为自己指定的:

例如:如果访问toResourceSave()方法时没有通过validate验证而报错,默认情况是不会跳转到save视图而是input视图。但是我们可以在方法头部加入注解@InputConfig(methodName="saveInputReturn")指定如果没有通过validate验证通过则返回saveInputReturn的返回值视图save1.

    /**
     * 跳转到资源添加、修改页面
     * @return
     */

@InputConfig(methodName="saveInputReturn")
 public String toResourceSave(){
  //获取该分类下资源概览字段
  List<UlibResourceColumn> listcolumns=ucolumnService.findUlibResourceColumnByProperty("typeid",typeid);
  Map<String,String> columnsmap=new HashMap<String,String>();
  for(UlibResourceColumn c:listcolumns){
   columnsmap.put(c.getCode(),c.getShowname().equals("")?c.getDefaultname():c.getShowname());
  }
  
  if(uresource.getId()==null || uresource.getId().equals("")){//添加资源
   getRequest().setAttribute("isupdate", "0");
  }else{//浏览、修改资源
   uresource=this.uresourceService.getUresourceById(uresource.getId());
      getRequest().setAttribute("isupdate", "1");
   if("view".equals(getRequest().getParameter("opt"))){
    getRequest().setAttribute("isview", "1");
   }
  }

  this.getRequest().getSession().setAttribute("showcolumns", columnsmap);
  return "save";
 }
 
 public String saveInputReturn(){
  return "save1";
 }

 


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值