session.get() Hibernate Project

来源:互联网 发布:巫师3护甲穿刺数据 编辑:程序博客网 时间:2024/06/10 10:56

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

  • Max Andersen Master 3,352 发帖自
    2004-8-11
    当前正在审批
    1. 2006-2-27 下午12:41 (回复 Arjan Renting)
    Re: The method get(Class, Serializable) in the type Session

    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);

原创粉丝点击