消息订阅、发送成功

This commit is contained in:
2018-10-08 18:17:03 +08:00
commit 54d19c30cd
26 changed files with 650 additions and 0 deletions

25
consumer/consumer-common/.gitignore vendored Normal file
View File

@@ -0,0 +1,25 @@
/target/
!.mvn/wrapper/maven-wrapper.jar
### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr
### NetBeans ###
/nbproject/private/
/build/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/

View File

@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>consumer-common</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>consumer-common</name>
<description>Demo project for Spring Boot</description>
<parent>
<groupId>top.fjy8018</groupId>
<artifactId>consumer</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<dependencies>
</dependencies>
</project>

View File

@@ -0,0 +1,16 @@
package top.fjy8018.consumer.common;
import org.springframework.cloud.stream.annotation.Input;
import org.springframework.cloud.stream.messaging.Sink;
import org.springframework.messaging.SubscribableChannel;
/**
* @author F嘉阳
* @date 2018-10-08 18:07
*/
public interface MySink {
String INPUT = "input";
@Input(Sink.INPUT)
SubscribableChannel input();
}

View File

@@ -0,0 +1,15 @@
package top.fjy8018.consumer.common;
import org.springframework.cloud.stream.annotation.Output;
import org.springframework.messaging.MessageChannel;
/**
* @author F嘉阳
* @date 2018-10-08 18:01
*/
public interface MySource {
String OUTPUT = "output";
@Output("output")
MessageChannel output();
}

View File

@@ -0,0 +1,16 @@
package top.fjy8018.consumer.common;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
public class ConsumerCommonApplicationTests {
@Test
public void contextLoads() {
}
}