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)

 

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

Integer.valueOf(1);

session.get() Hibernate Project

相关文章:

  • 2021-04-03
  • 2022-12-23
  • 2021-08-29
  • 2022-01-15
  • 2021-06-18
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-05-24
  • 2022-12-23
  • 2021-06-25
  • 2022-12-23
  • 2022-12-23
  • 2021-08-07
相关资源
相似解决方案