Showing posts with label spring. Show all posts
Showing posts with label spring. Show all posts

Thursday, February 26, 2009

Hibernate Spring where clause

public List getSongs(Long artistId) {
return getHibernateTemplate().find("from Song as song where song.artist.id = ?", new Object [] {artistId});
}

Followers