当前位置: 代码迷 >> Java Web开发 >> 在使用myeclipse中出现的有关问题
  详细解决方案

在使用myeclipse中出现的有关问题

热度:118   发布时间:2016-04-17 13:35:35.0
在使用myeclipse中出现的问题?
在myeclipse中的写了Actionform,在Actionform中的
public   ActionErrors   validate(ActionMapping   mapping,
HttpServletRequest   request)   {
//   TODO   Auto-generated   method   stub
ActionErrors   errors   =   new   ActionErrors();
if((message==null)||(message.length() <1))
{
errors.add(ActionErrors.GLOBAL_ERROR,   new   ActonError( "error.message.required ")); }
return   errors;
}
其中add()   函数被在中间用黑线划掉,请问这是原因引起的

------解决方案--------------------
在新版本中不再建议使用的方法
------解决方案--------------------
改成 errors.add(ActionErrors.GLOBAL_ERROR, new ActionMessage( "error.message.required ")); 就可以了。
  相关解决方案