Implementing a Generic Enum JPA Attribute Converter in Java
Using ORMs like JPA makes it easy to map your entity fields to the database. You can easily map a String, an Enum or a List just using annotations to specify how you want your data to be stored.
Read more