I have a custom converter for UUID to transfer it to a string instead a binary:
package de.kaiserpfalzEdv.commons.jee.db; import javax.persistence.AttributeC
Andy Wilkinson gave the correct answer. Reading the spec helps in a lot of times.
JPA 2.1 Converters are not applied to @Id annotated attributes.
@Id
Thank you Andy.