@ColumnTransformer(read = "aes_decrypt(card_no_encrypt, '${encryption.key}')", write = "aes_encrypt(?,'${encryption.key}')")
public String cardNoEncrypt;
I need to get pass the encryption key from properties file. But this implementation takes '${encryption.key}' itself as the key, not the value of it.