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
-
喜欢 (0)
-
if you run with jdk5 it will work ;)
some of the dao templates is not jdk5 free ...this is one of the areas.
try it with cvs version, and if that does not work report it in jira.
在jdk1.5版本时会自动打包成Integer类型。
Integer.valueOf(1);