gpt4 book ai didi

java - 从配置属性动态设置 @JmsListener 目的地

转载 作者:搜寻专家 更新时间:2023-11-01 02:19:54 26 4
gpt4 key购买 nike

我希望能够从 application.properties 设置 @JMSlistener 目标

我的代码是这样的

@Service
public class ListenerService {
private Logger log = Logger.getLogger(ListenerService.class);

@Autowired
QueueProperties queueProperties;


public ListenerService(QueueProperties queueProperties) {
this.queueProperties = queueProperties;

}

@JmsListener(destination = queueProperties.getQueueName() )
public void listenQueue(String requestJSON) throws JMSException {
log.info("Received " + requestJSON);

}
}

但是在构建时我得到了

Error:(25, 60) java: element value must be a constant expression

最佳答案

您不能在当前 bean 中引用一个字段,但您可以使用 SpEL 表达式在应用程序上下文中引用另一个 bean...

@SpringBootApplication
public class So49368515Application {

public static void main(String[] args) {
SpringApplication.run(So49368515Application.class, args);
}

@Bean
public ApplicationRunner runner(JmsTemplate template, Foo foo) {
return args -> template.convertAndSend(foo.getDestination(), "test");
}

@JmsListener(destination = "#{@foo.destination}")
public void listen(Message in) {
System.out.println(in);
}

@Bean
public Foo foo() {
return new Foo();
}

public class Foo {

public String getDestination() {
return "foo";
}
}

}

您还可以使用属性占位符 ${...}

关于java - 从配置属性动态设置 @JmsListener 目的地,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49368515/

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