首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java Exception >

报出 java.lang.ClassCastException异常,errors.add("username",new Ac

2014-01-26 
java.lang.ClassCastException: org.apache.struts.action.ActionMessagejava.lang.ClassCastException: or

java.lang.ClassCastException: org.apache.struts.action.ActionMessage
  java.lang.ClassCastException: org.apache.struts.action.ActionMessage
  jsp文件
  <html:html locale="true">
  <head>
  <title>JSP for helloForm form</title>
  <html:base/>
  </head>
  <body>
  <html:errors/><p>
  form.java
  System.out.println("@@@@@ AAAAAAA @@@@@@@@@@@");
  if(userName==null || userName.trim().equals("")){
  System.out.println("@@@@@ BBBBBBB @@@@@@@@@@@");
  errors.add(ActionErrors.GLOBAL_ERROR,new ActionMessage("hello.no.username.error"));
  System.out.println("@@@@@@ error @@@@@@ " + errors.toString());
  }
  return errors;

------解决方法--------------------------------------------------------
hello.no.username.error
  是对应文件
  ApplicationResources_ch.properties
  中的一项的。
 
  这个文件在strus-config.xml中配置的
  <!-- ========== Message Resources Definitions =========================== -->
 
  <message-resources parameter="ApplicationResources_ch.properties"/>
 
  <message-resources parameter="AlternateApplicationResources"
    key="alternate">
  </message-resources>
 
------解决方法--------------------------------------------------------
你的配置信息要在web.xml中加啊!!!!!
------解决方法--------------------------------------------------------
假如要使用username,那么对应的"锚点"username,在什么地方进行设置!!
 
  这个不需要什么设置!errors.add("username", new ActionError("hello.no.username.error"));
  这个相当于用一个名为"username"的键去映射当用户名为空时的出错信息,这样在页面上显示出错信息时我们就可以指定自己要显示的对应字段的出错信息,而且位置比较灵活,如你有多个表单域
  html:text property="userName"/><html:errors property="username"/>
  html:text property="userId"/><html:errors property="userid"/>
  这样如果出错,出错信息显示在相应的字段旁边...
  而如果你想显示在 ActionErrors中保存的所有出错信息时,则只需<html:errors/>这一句。
 

        

热点排行