当前位置: 代码迷 >> Java Web开发 >> java.lang.NoClassDefFoundError: Could not initialize class jihe.Test3解决方案
  详细解决方案

java.lang.NoClassDefFoundError: Could not initialize class jihe.Test3解决方案

热度:129   发布时间:2016-04-17 15:11:11.0
java.lang.NoClassDefFoundError: Could not initialize class jihe.Test3
public   class   index   extends   Action   {


public   ActionForward   execute(ActionMapping   mapping,   ActionForm   form,
HttpServletRequest   request,   HttpServletResponse   response)   throws   Exception   {

Test3   t=new   Test3();

List   m=   t.findAllUser();

request.setAttribute( "sutao ",   m);
 

//request.removeAttribute(mapping.getAttribute());

return   mapping.findForward( "ss ");
}
}
就是这个ACTION不知道有没有错?

------解决方案--------------------
没编译,没包进来
  相关解决方案