@Embedded
public class EmbedMe {
    private String prop1;
    private String prop2;
}

@Entity
public class EncryptedEmbedded {
    @Embeddable
    private EmbedMe enc;
}

I am current using Jasypt for encryption. Is there a way to indicate that the @Embeddable in EncryptedEmbedded will use @Type(value = "newDeclaredTypeHere") per attribute (prop1, prop2)?

Thanks in advance... ;)

link|improve this question
What did you try? What doesn't work? – Pascal Thivent May 31 '10 at 13:19
hmmm i can't seem to find the proper place (@AttributeOverride) to put @Type("xxx") on the embedding class... im not sure if this is possible... thanks. – user354367 Jun 7 '10 at 1:57
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.