1 Reply Latest reply on Feb 27, 2006 12:41 PM by maxandersen

    The method get(Class, Serializable) in the type Session is n

    biet

      I am using JBoss IDE 1.5 and I am trying to generate from Hibernate.

      After generating I get the following error in Home files

       public Dag findById( int id) {
       log.debug("getting Dag instance with id: " + id);
       try {
       Dag instance = (Dag) sessionFactory.getCurrentSession()
       .get("Dag", id);
       if (instance==null) {
       log.debug("get successful, no instance found");
       }
       else {
       log.debug("get successful, instance found");
       }
       return instance;
       }
       catch (RuntimeException re) {
       log.error("get failed", re);
       throw re;
       }
       }


      The method get(Class, Serializable) in the type Session is not applicable for the arguments (String, int)

      I've put Hibernate3.jar in my project-Library's