Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The following code saves objA.

A objA = new A();
session.save(objA);

When session.save(A) is called, I want my A Object to execute an internal method/function:

onSave() {
  this.b = some code;
}

Where can I put the code? Is there an actual onSave() method, or an interface to implement or abstract class to extend?

share|improve this question

2 Answers

You can use Hibernate interceptor org.hibernate.Interceptor and its onSave method

boolean onSave(
    Object entity, 
    Serializable id, 
    Object[] state, 
    String[] propertyNames, 
    Type[] types) 
share|improve this answer
1  
This is also in the official Hibernate API: org.hibernate.Interceptor. What you're referring to is a really old version of Hibernate. (Ah, you've edited your answer). – Jesper Jan 4 at 15:14
@Jesper thank you for pointing that out (+1). I just updated the answer. – Tom Jan 4 at 15:15
Is onSave() called everytime I called session.save(obj)? But I want it to be called only when an obj of class A is saved. In php or python, there's a handy way that you just write an override method in class A. – user1882455 Jan 6 at 5:31

You can do this with an Interceptor.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.