使用springcloud总线时,会创建一条自定义消息并通过rabbitmq
发送,但是在发送消息后,它不会转到rabbitmq
。尝试call /actuator/bus-refresh
时,您可以看到从rabbitmq控制台页面发出的总线消息。
我试图启动微服务以注册自定义事件侦听器,但未能收到它。但是,如果发送者自己注册了一个侦听器,则他可以接收它,但不能从rabbitmq
发送它。
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.3.RELEASE</version>
<relativePath/>
</parent>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-bus-amqp</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Greenwich.SR1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
关于@RemoteApplicationEventScan
注释,我都在同一程序包下编码,因此我应该能够扫描到TestEvent
。我还尝试指定basepackage
。
@SpringBootApplication
@RemoteApplicationEventScan
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
@RestController
@RequestMapping("test")
public class TestController {
@Autowired
private ApplicationContext context;
@RequestMapping("test")
public String test() {
final TestEvent testEvent = new TestEvent(this, context.getId(), null,"test");
context.publishEvent(testEvent);
return "success";
}
}
@Data
public class TestEvent extends RemoteApplicationEvent {
private String action;
public TestEvent(Object source, String originService, String destinationService, String action) {
super(source, originService, destinationService);
this.action = action;
}
}
当我打电话给http://localhost:8080/actuator/bus-refresh
时,我可以在rabbitmq
中看到信息。
{" type ":" AckRemoteApplicationEvent ", "timestamp" : 1554350325406, "originService" : "application: 0: b3461fbec3536203a7020ff9d24bb11b", "destinationService" : "* *", "id" : "e6b875bd - 2402-494 - f - a870 - 4917324 d2c5c ackId ", "" :" af93075e - 55 d2-41 f8 - ba27 - e3c80cf19eea ", "ackDestinationService" : "* *", "the event" is: "org. Springframework. Cloud. Bus. Event. RefreshRemoteApplicationEvent"}.
但是当我打电话到http://localhost:8080/test/test
时,我不会。
答案 0 :(得分:0)
几天前,我遇到了同样的问题,事实证明这是因为originService
不正确。作为context.getId()
传递originService
无效。
简短答案:使用org.springframework.cloud.bus.BusProperties#id
。您可以将BusProperties
注入到组件中。或者,您可以按照document中所述配置自己的Spring Cloud总线ID。
我不是100%肯定这是正确的方法。也许我错过了文档中的某些内容。它只是基于我从org.springframework.cloud.bus.BusAutoConfiguration
的方法acceptLocal的源代码中读取的内容。
希望它对您有用。