본문 바로가기
Hibernate

select, save update 시 디비 특정 function을 호출해야될경우

by 자바초보자 2016. 4. 6.
728x90

select, save update 시 디비 특정 function을 호출해야될경우

 

 

@Column(columnDefinition= "LONGBLOB", name="encryptedBody")
@ColumnTransformer(
  read
="AES_DECRYPT(encryptedBody, 'password')",
  write
="AES_ENCRYPT(?, 'password')")

public byte[]  getEncryptedBody() {
   
return encryptedBody;
}

public void setEncryptedBody(byte[]  encryptedBody) {
   
this.encryptedBody = encryptedBody;
}

728x90