• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Ron McLeod
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

How to use Hibernate JPA annotation when extending HibernateDaoSupport?

 
Ranch Hand
Posts: 60
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
How to use Hibernate JPA annotation when extending HibernateDaoSupport?
The below code throws an exception - Unknown entity:
-------------
public class CustomerDaoHibernateImpl extends HibernateDaoSupport implements CustomerDao {


public void saveAccount(User user) {
System.out.println("CustomerDaoHibernateImpl save");

this.getHibernateTemplate().save(user);

}
---------------------

@Entity
@Table (name="User")
public class User {
private long id;
private String password;
@Id
@GeneratedValue
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
@Column (name="password")
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
 
Bartender
Posts: 1210
25
Android Python PHP C++ Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I'm not sure you can mix the two. Since you're using JPA, you're better of using it throughout - so extend JpaDaoSupport, not HibernateDaoSupport. Also ensure that the LocalSessionFactoryBean's configurationClass field is set to AnnotationConfiguration.
 
I was born with webbed fish toes. This tiny ad is my only friend:
Clean our rivers and oceans from home
https://www.kickstarter.com/projects/paulwheaton/willow-feeders
reply
    Bookmark Topic Watch Topic
  • New Topic