session.get() Hibernate Project

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

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

 

在jdk1.5版本时会自动打包成Integer类型。

Integer.valueOf(1);

posted @ 2010-12-29 01:08  Atlas's blog  阅读(170)  评论(0编辑  收藏  举报