Created
September 6, 2016 09:32
-
-
Save ouaibsky/3cd537b574df6466b8b7ff34349ef954 to your computer and use it in GitHub Desktop.
pjp: annotation + interface +method
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@AfterReturning("this(org.springframework.data.jpa.repository.JpaRepository) "+ | |
"&& @target(org.javers.spring.annotation.JaversSpringDataAuditable) "+ | |
"&& execution(public * saveAndPublish(..)) ") | |
public void onSaveExecutedJpaRepo(JoinPoint pjp) { | |
onVersionEvent(pjp, saveHandler); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment