s

spring-data-events

An implementation of missing spring data repository hooks. JPA @EventHandlers have following limitations, which have been solved in this library: 1) It leads to circular dependency between your entity and it's event handler which makes it impossible to split your application into dedicated modules or extends an existing one with own modules. 2) The inability to inject spring beans without using of static context.
https://labun.org
Apache License, Version 2.0
Konstantin Labun
Files download
File Operation
spring-data-events-1.0.1.jar download
spring-data-events-1.0.1.pom download
spring-data-events-1.0.1-sources.jar download
Apache Maven
<dependency>
  <groupId>org.labun</groupId>
  <artifactId>spring-data-events</artifactId>
  <version>1.0.1</version>
</dependency>
Gradle Groovy
implementation 'org.labun:spring-data-events:1.0.1'
Gradle Kotlin
implementation("org.labun:spring-data-events:1.0.1")
Scala SBT
libraryDependencies += "org.labun" % "spring-data-events" % "1.0.1"
Groovy Grape
@Grapes(
  @Grab(group='org.labun', module='spring-data-events', version='1.0.1')
)
Apache Ivy
<dependency org="org.labun" name="spring-data-events" rev="1.0.1" />
Leiningen
[org.labun/spring-data-events "1.0.1"]
Apache Buildr
'org.labun:spring-data-events:jar:1.0.1'