• 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:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

how to use Xdoclet in standalone application

 
Greenhorn
Posts: 12
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I wrote a pojo class say it Employee.java

package org.emp;
public class Employee {

private String empid;

private String empName;

private String address;

public String getAddress() {
return address;
}

public void setAddress(String address) {
this.address = address;
}

public String getEmpid() {
return empid;
}

public void setEmpid(String empid) {
this.empid = empid;
}

public String getEmpName() {
return empName;
}

public void setEmpName(String empName) {
this.empName = empName;
}
}

Now i want to generate hbm file for this pojo file.

how??? using Xdoclet?

Thanks in advance.....




 
author and cow tipper
Posts: 5009
1
Hibernate Spring Tomcat Server
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Well, if you used JPA annotations, you wouldn't even need an hbm file! Here's a simple example of a User, as opposed to an Employee, decorated with JPA annotations:



Mapping Columns and POJO Attributes with Hibernate and JPA

And actually, many of those annotations aren't needed, as the @Column mappings have defaults that are reasonable.

You could actually simplify it as much as this?



So, why not just use JPA annotations instead?

Setting up a JPA and Hibernate Development Environment

-Cameron McKenzie


 
reply
    Bookmark Topic Watch Topic
  • New Topic