JPA Attribute Converter: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 18: Line 18:
=Programming Model=
=Programming Model=


@Convert(converter = ColorConverter.class)
<syntaxhighlight lang='java'>
@Convert(converter = PayloadConverter.class)
private String payload;
</syntaxhighlight>

Revision as of 20:09, 31 October 2018

External

Internal

Overview

An attribute converter allows the developer to specify methods to convert between the database and the Java representation of an attribute.

Playground Example

https://github.com/ovidiuf/playground/tree/master/spring/jpa/attribute-converter

Programming Model

@Convert(converter = PayloadConverter.class)
private String payload;