看不明白出错信息,还是把你的bean弄出来看看比较好

解决方案 »

  1.   

    是不是修改了bean的内容而服务器没有更新,也就是说并没有加载进去呀
      

  2.   

    bean的两个方法:
    public void testInsertForum(ForumInfo foruminfo) throws Exception {
        try {      forumsession.insertForum(foruminfo); //插入一个新的版块的METHOD
        }
        catch (Exception e) {
          throw new Exception(e);
        }
      }
      public void InsertForum(Event e,ForumInfo foruminfo) throws Exception {
          try {
            if(e.getOrigins.equals("forum"))
            forumsession.insertForum(foruminfo); //插入一个新的版块的METHOD
          }
          catch (Exception e) {
            throw new Exception(e);
          }
        }