Type Conversion in JPA 2.1

Written on June 10, 2014

The Java Persistence 2.1 specification (JSR 338) adds support for various new features such as schema generation, stored procedure invocation, use of entity graphs in queries and find operations, unsynchronized persistence contexts, injection into entity listener classes, etc.

JPA 2.1 also adds support for Type Conversion methods, sometime called Type Converter. This new facility let developers specify methods to convert between the entity attribute representation and the database representation for attributes of basic types.

For additional details on Type Conversion, you can check the JSR 338 Specification and its corresponding JPA 2.1 Javadocs. In addition, you can also check those 2 articles. The first article (‘How to implement a Type Converter’) gives a short overview on Type Conversion while the second article (‘How to use a JPA Type Converter to encrypt your data’) implements a simple use-case (encrypting data) to illustrate Type Conversion. Mission critical applications would probably rely on transparent database encryption facilities provided by the database but that’s not the point here, this use-case is easy enough to illustrate JPA 2.1 Type Conversion.

Originaly posted on The Aquarium blog.