Tagged Questions
6
votes
6answers
11k views
Password encryption with Spring/Hibernate - Jasypt or something else?
In a Java application stack with Spring & Hibernate (JPA) in the Data Access Layer, what are good methods of applying the password encryption (hopefully using annotations), and where can you find ...
2
votes
2answers
54 views
OptimisticLockException with JPA/Hibernate when trying to read encrypted text
We need to encrypt Strings while storing them with JPA and decrypt it when reading it. First of all, we can't use some hibernate config or any other config file because our properties are generic. ...
0
votes
0answers
122 views
How to declare different non-JPA annotations on embedded classes
@Embedded
public class EmbedMe {
private String prop1;
private String prop2;
}
@Entity
public class EncryptedEmbedded {
@Embeddable
private EmbedMe enc;
}
I am current using Jasypt ...