mirror of https://github.com/ZhongFuCheng3y/austin
parent
3fa0a63f98
commit
2678a76b91
@ -0,0 +1,10 @@
|
||||
package com.java3y.austin.pipeline;
|
||||
|
||||
/**
|
||||
* 业务执行器
|
||||
*
|
||||
* @author 3y
|
||||
*/
|
||||
public interface BusinessProcess {
|
||||
void process(ProcessContext context);
|
||||
}
|
@ -0,0 +1,24 @@
|
||||
package com.java3y.austin.pipeline;
|
||||
|
||||
/**
|
||||
* 责任链上下文
|
||||
* @author 3y
|
||||
*/
|
||||
public class ProcessContext {
|
||||
|
||||
/**
|
||||
* 标识责任链的code
|
||||
*/
|
||||
private String code;
|
||||
|
||||
/**
|
||||
* 存储责任链上下文数据的模型
|
||||
*/
|
||||
private ProcessModel processModel;
|
||||
|
||||
/**
|
||||
* 责任链中断的标识
|
||||
*/
|
||||
private Boolean needBreak = false;
|
||||
|
||||
}
|
@ -0,0 +1,10 @@
|
||||
package com.java3y.austin.pipeline;
|
||||
|
||||
|
||||
/**
|
||||
* 真正存储着责任链的数据
|
||||
* @author 3y
|
||||
*/
|
||||
public class ProcessModel {
|
||||
|
||||
}
|
@ -0,0 +1,20 @@
|
||||
package com.java3y.austin.service;
|
||||
|
||||
import com.java3y.austin.domain.SendRequest;
|
||||
import com.java3y.austin.domain.SendResponse;
|
||||
|
||||
/**
|
||||
* 发送接口
|
||||
* @author 3y
|
||||
*/
|
||||
public class SendServiceImpl implements SendService {
|
||||
@Override
|
||||
public SendResponse send(SendRequest sendRequest) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public SendResponse batchSend(SendRequest sendRequest) {
|
||||
return null;
|
||||
}
|
||||
}
|
@ -0,0 +1,23 @@
|
||||
package com.java3y.austin.domain;
|
||||
|
||||
|
||||
/**
|
||||
* 发送接口的参数
|
||||
*
|
||||
*/
|
||||
public class SendRequest {
|
||||
|
||||
/**
|
||||
* 消息模板Id
|
||||
*/
|
||||
private Long messageTemplateId;
|
||||
|
||||
/**
|
||||
* 接收者
|
||||
* 多个用
|
||||
*/
|
||||
private String receiver;
|
||||
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,4 @@
|
||||
package com.java3y.austin.domain;
|
||||
|
||||
public class SendResponse {
|
||||
}
|
@ -0,0 +1,18 @@
|
||||
package com.java3y.austin.service;
|
||||
|
||||
import com.java3y.austin.domain.SendRequest;
|
||||
import com.java3y.austin.domain.SendResponse;
|
||||
|
||||
/**
|
||||
* 发送接口
|
||||
*
|
||||
* @author 3y
|
||||
*/
|
||||
public interface SendService {
|
||||
|
||||
|
||||
SendResponse send(SendRequest sendRequest);
|
||||
|
||||
|
||||
SendResponse batchSend(SendRequest sendRequest);
|
||||
}
|
@ -0,0 +1,24 @@
|
||||
package com.java3y.austin.controller;
|
||||
|
||||
import com.java3y.austin.kafkatest.UserLogProducer;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
@RestController
|
||||
public class KafkaTestController {
|
||||
|
||||
@Autowired
|
||||
private UserLogProducer userLogProducer;
|
||||
|
||||
/**
|
||||
* test insert
|
||||
*/
|
||||
@GetMapping("/kafka/insert")
|
||||
public String insert(String userId) {
|
||||
userLogProducer.sendLog(userId);
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,18 @@
|
||||
package com.java3y.austin.kafkatest;
|
||||
|
||||
import lombok.Data;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
/**
|
||||
* @Author 18011618
|
||||
* @Description 定义用户发送的日志数据
|
||||
* @Date 14:42 2018/7/20
|
||||
* @Modify By
|
||||
*/
|
||||
@Data
|
||||
@Accessors(chain = true)
|
||||
public class UserLog {
|
||||
private String username;
|
||||
private String userid;
|
||||
private String state;
|
||||
}
|
@ -0,0 +1,30 @@
|
||||
package com.java3y.austin.kafkatest;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.apache.kafka.clients.consumer.ConsumerRecord;
|
||||
import org.springframework.kafka.annotation.KafkaListener;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
import java.util.Optional;
|
||||
|
||||
/**
|
||||
* @Author 18011618
|
||||
* @Description
|
||||
* @Date 14:50 2018/7/20
|
||||
* @Modify By
|
||||
*/
|
||||
@Component
|
||||
@Slf4j
|
||||
public class UserLogConsumer {
|
||||
@KafkaListener(topics = {"austin"},groupId = "austinGroup1")
|
||||
public void consumer(ConsumerRecord<?,?> consumerRecord){
|
||||
//判断是否为null
|
||||
Optional<?> kafkaMessage = Optional.ofNullable(consumerRecord.value());
|
||||
log.info(">>>>>>>>>> record =" + kafkaMessage);
|
||||
if(kafkaMessage.isPresent()){
|
||||
//得到Optional实例中的值
|
||||
Object message = kafkaMessage.get();
|
||||
System.err.println("消费消息:"+message);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
@ -0,0 +1,29 @@
|
||||
package com.java3y.austin.kafkatest;
|
||||
|
||||
import com.alibaba.fastjson.JSON;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.kafka.core.KafkaTemplate;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
/**
|
||||
* @Author 18011618
|
||||
* @Description
|
||||
* @Date 14:43 2018/7/20
|
||||
* @Modify By
|
||||
*/
|
||||
@Component
|
||||
public class UserLogProducer {
|
||||
@Autowired
|
||||
private KafkaTemplate kafkaTemplate;
|
||||
|
||||
/**
|
||||
* 发送数据
|
||||
* @param userid
|
||||
*/
|
||||
public void sendLog(String userid){
|
||||
UserLog userLog = new UserLog();
|
||||
userLog.setUsername("jhp").setUserid(userid).setState("0");
|
||||
System.err.println("发送用户日志数据:"+userLog);
|
||||
kafkaTemplate.send("austin", JSON.toJSONString(userLog));
|
||||
}
|
||||
}
|
Loading…
Reference in new issue