• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

hibernate annotations for stored prcedure in pojo class

 
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
how can in write annotation for stored procedures in pojo class .

if i use multiple stored procedures for the same pojo, then how can i mention in pojo class for those sp...
following code is for table then for stored procedure.....? please send me
@Entity
@table(name="abc")
public class abcabc
{
private String a;
@Column(name="A",nullable=false,length=10)
public String getA()
{
return a;
}
public void setA(String a)
{
this.a = a;
}

}

tnanks in advance
 
reply
    Bookmark Topic Watch Topic
  • New Topic