gpt4 book ai didi

java - 将 Spring 配置映射到集成流程

转载 作者:行者123 更新时间:2023-11-30 10:47:13 26 4
gpt4 key购买 nike

我有一个 Spring Boot/Integration 应用程序,其集成流程从 RabbitMQ 队列开始。流程本身和应用程序总体上运行良好,但初始入站 AMQP 配置有很多冗余配置。

目前我有十个DataType,每个属性都略有不同,其中一些需要在运行时定义。我为每个初始化一个入站流,设置几个 header ,然后快速将它们转储到一个公共(public) channel 中进行处理。

只有 一个 NetworkDiagnostic DataType 的 Java 配置如下所示:

@Bean
public IntegrationFlow inboundNetworkDiagnosticFlow(@Qualifier("connectionFactory") ConnectionFactory connectionFactory,
@Qualifier(BeanNames.INBOUND_EVENTS_CHANNEL) MessageChannel outbound,
@Qualifier(BeanNames.JSON_NODE_MESSAGE_CONVERTER) MessageConverter messageConverter,
@Qualifier("networkDiagnosticQueue") Queue queue,
@Value("${networkDiagnostic.numConsumers}") int numConsumers,
@Value("${networkDiagnostic.prefetchCount}") int prefetchCount) {
return makeEventIntegrationFlow(connectionFactory, outbound, messageConverter, queue, numConsumers, prefetchCount,
DataTypes.EVENT_NETWORK_DIAGNOSTIC);

}

@Bean
public Binding networkDiagnosticBinding(@Qualifier("networkDiagnosticQueue") Queue queue) {
return makeFanoutBinding(queue, NETWORK_DIAGNOSTIC_EXCHANGE_NAME);
}


@Bean
public Queue networkDiagnosticQueue() {
return makeQueue(NETWORK_DIAGNOSTIC_QUEUE_STRING);
}

@Bean
public FanoutExchange networkDiagnosticExchange() {
return new FanoutExchange(NETWORK_DIAGNOSTIC_EXCHANGE_NAME);
}

还有另外九个并行配置。我想进一步考虑这一点,以便 a) 删除重复,以及 b) 可以简单地从服务器上的配置文件配置更多输入。

我的一般想法是我会有一个 yaml 配置文件:

data_types:
- name: network-diagnostic
schema: event
window_type: hourly
exchange_name: blahblahblah
queue_name: blahblahblah
...
- name: log-diagnostic
...

我将通过 @ConfigurationProperties 映射到一个或多或少类似的类:

 /**
* Organizes information and configuration for a DataType
*/
public class DataType {
private String name;
private Schema schema;
private WindowType windowType;
private long bucketLength;

private String exchange;
private String routingKey;
...

而且我需要一些方法——registerAllBeans——期望所有数据类型,它创建所有必要的 bean(及其相互关系),并调用 SingletonBeanRegistry::registerSingleton 在每个。

也就是说,我不确定该方法应该何时运行,以及如何让它运行。一方面,我需要它在配置属性创建的 beans 可访问后运行,但在生命周期管理开始之前(因此我的集成流将被管理),最好在 RabbitAdmin::afterPropertiesSet 之前运行> 这样我也可以获得我的 RabbitMQ 对象的隐式声明。

我怎样才能做到这一点?

更新:我听从了下面@ArtemBilan 的建议并编写了一个模拟示例,我将其包含在此处。

主要类:

@EnableAutoConfiguration
@Configuration
public class DemoApplication {

public static void main(String[] args) {
SpringApplicationBuilder parentBuilder = new SpringApplicationBuilder(DemoApplication.class);
parentBuilder.child(ChildConfiguration.class).properties("name=bob", "message='hi how are you?'").run();
parentBuilder.child(ChildConfiguration.class).properties("name=jane", "message='hi how are you?'").run();
}

@Bean
public IntegrationFlow integrationFlow() {
Object object = new Object();
return IntegrationFlows.from("inputChannel")
.handle(m -> System.out.println(object + " " + m.getPayload() + " " + System.currentTimeMillis()))
.get();
}
}

子配置:

@EnableAutoConfiguration
@EnableConfigurationProperties(Sample.class)
@Configuration
public class ChildConfiguration {

@Bean
public IntegrationFlow anotherOutgoingFlow(Sample sample) {
return IntegrationFlows
.from(() -> new GenericMessage<>("hello " + sample.getName() + "; " + sample.getMessage()),
m -> m.poller(Pollers.fixedDelay(500)))
.channel("inputChannel")
.get();
}
}

还有一个模型类:

@ConfigurationProperties
public class Sample {
private String name;
private String message;

public Sample() { }

public String getName() {
return name;
}

public void setName(String name) {
this.name = name;
}

public String getMessage() {
return message;
}

public void setMessage(String message) {
this.message = message;
}
}

打印,例如:

2016-03-25 17:12:04.109  INFO 24637 --- [           main] com.example.DemoApplication              : Started DemoApplication in 0.169 seconds (JVM running for 3.878)
java.lang.Object@25c4da11 hello bob; 'hi how are you?' 1458940324438
java.lang.Object@25c4da11 hello jane; 'hi how are you?' 1458940324607
java.lang.Object@25c4da11 hello bob; 'hi how are you?' 1458940324938
java.lang.Object@25c4da11 hello jane; 'hi how are you?' 1458940325108
java.lang.Object@25c4da11 hello bob; 'hi how are you?' 1458940325439

最佳答案

考虑为您的应用程序使用parent/child 架构,届时您将能够根据提供的环境重用您的模板配置。

参见 Spring Boot Reference Manual获取更多信息。

关于java - 将 Spring 配置映射到集成流程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36223339/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com