| Author |
how to use Xdoclet in standalone application
|
vijay akni kumar
Greenhorn
Joined: Aug 11, 2008
Posts: 12
|
|
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.....
|
 |
Cameron Wallace McKenzie
author and cow tipper
Saloon Keeper
Joined: Aug 26, 2006
Posts: 4967
|
|
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
|
Author of Hibernate Made Easy, What is WebSphere???, JSF 2.0 Made Easy and the SCJA Certification Guides
|
 |
 |
|
|
subject: how to use Xdoclet in standalone application
|
|
|