I\'m considering spring data for a project. Is it possible to override the per default generated save method? And if yes, how?
Use JPA Event listeners like @PrePersist, @PreUpdate. This will work if the underlying JPA provider supports this features. This is JPA 2 feature so the latest Hibernate, EclipseLink etc should support it.