Search code examples
javaspring-data

Spring Data: Override save method


I'm considering spring data for a project. Is it possible to override the per default generated save method? And if yes, how?


Solution

  • Didn't get this to work nicely so I put my required logic into a service class and left the repositories save method untouched.