Commit b2f4e938 authored by Chark's avatar Chark

remove pom rulai.jar

parent 92d1ccf6
...@@ -324,11 +324,6 @@ ...@@ -324,11 +324,6 @@
<artifactId>aspectjweaver</artifactId> <artifactId>aspectjweaver</artifactId>
<version>1.8.13</version> <version>1.8.13</version>
</dependency> </dependency>
<dependency>
<groupId>rulai-acolyte</groupId>
<artifactId>acolyte-buddhistscriptures</artifactId>
<version>1.1</version>
</dependency>
</dependencies> </dependencies>
<build> <build>
......
package cn.quantgroup.xyqb.event;
import cn.quantgroup.acolyte.buddhistscriptures.ingester.UserIngest;
import org.springframework.context.ApplicationListener;
import org.springframework.stereotype.Component;
import javax.annotation.Resource;
import java.util.Objects;
/**
* 发送到Kafka - 综合统计中心 - 登录
*
* @author renwc
* @date 2018-07-03
*/
@Component
public class KafkaUserEventListener implements ApplicationListener<StatisticsEvent> {
@Resource
private UserIngest userIngest;
@Override
public void onApplicationEvent(StatisticsEvent event) {
if (Objects.nonNull(event.getLogin())) {
// userIngest.sendLoginInfo(event.getLogin());
}
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment