-
Recent Posts
Blog Archive
My Links
Labels
- Application Clustering (4)
- Distributed Systems (6)
- EMS/NMS/OSS (9)
- Food (3)
- General (35)
- Hadoop (1)
- Hibernate (2)
- java (22)
- Linux (1)
- Miscellaneous (11)
- Movies (21)
- NGOSS/OSS/J/TMF (5)
- Pics (9)
- Scala (1)
- Technical (5)
- Travelogue (2)
- Uncategorized (8)
- workflow/XPDL/BPEL (1)
Tag Archives: Hibernate
Hibernate : Adding an enum as a property
Using Hibernate Annotations: @Entity public class TestEntity { @Enumerated(EnumType.STRING) @Column(name=”ENUM_TYPE”) private TestEnum testEnum; } Using XML Based Mapping : Add hibernate-annotations.jar in your classpath during deployment but there’s no compile-time dependency: <property name=”testEnum” length=”30″ column=”testEnum” lazy=”false”> <type … Continue reading