MVN

cn.amossun : starter-event

Maven & Gradle

Nov 03, 2022

cn.amossun:starter-event · 当前项目支持用户使用注释从方法参数发布事件消息,以支持Spring RabbitMq原生事件类型,并将它们推送到指定的RabbitMq数据源。 只需添加一个@EventPublisher注释来推送消息,通过@EventListener或EventMulticaster接收消息,并通过带有统一处理方法参数的消息队列发送广播事件。

<dependency>
    <groupId>cn.amossun</groupId>
    <artifactId>starter-event</artifactId>
    <version>1.2.1-RELEASE</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of cn.amossun : starter-event to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.2.1-RELEASE

All Versions

Choose a version of cn.amossun : starter-event to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.2.x
starter-event-1.2.1-RELEASE
starter-event-1.2.0-RELEASE
1.1.x
starter-event-1.1.0-RELEASE

How to add a dependency to Maven

Add the following cn.amossun : starter-event maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>cn.amossun</groupId>
    <artifactId>starter-event</artifactId>
    <version>1.2.1-RELEASE</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following cn.amossun : starter-event gradle dependency to your build.gradle file:

implementation 'cn.amossun:starter-event:1.2.1-RELEASE'

Gradle Kotlin DSL: Add the following cn.amossun : starter-event gradle kotlin dependency to your build.gradle.kts file:

implementation("cn.amossun:starter-event:1.2.1-RELEASE")

How to add a dependency to SBT Scala

SBT Scala: Add the following cn.amossun : starter-event sbt scala dependency to your build.sbt file:

libraryDependencies += "cn.amossun" % "starter-event" % "1.2.1-RELEASE"