当我尝试使用主题中的数据(主题名称基于用户)时,在运行时我尝试使用主题中的消息,但是我收到以下错误。
引起:org.springframework.expression.spel.SpelEvaluationException:EL1008E:在'org.springframework.beans.factory.config.BeanExpressionContext'类型的对象上找不到属性或字段'consumerProperties' - 可能不公开或无效?
这是我的代码
@Service
public class kafkaConsumerService {
private SimpMessagingTemplate template;
KafkaConsumerProperties consumerProperties;
@Autowired
public kafkaConsumerService(KafkaConsumerProperties consumerProperties, SimpMessagingTemplate template) {
this.consumerProperties=consumerProperties;
this.template=template;
}
@KafkaListener(topics = {"#{consumerProperties.getTopic()}"})
// @KafkaListener(topics="Chandan3706")
public void consume(@Payload Message message) {
System.out.println("from kafka topic::" + message);
template.convertAndSend("/chat/getMessage", message);
}
}
我的KafkaConsumer Properties.class
@Component
@ConfigurationProperties(prefix="kafka.consumer")
public class KafkaConsumerProperties {
private String bootStrap;
private String group;
private String topic;
public String getBootStrap() {
return bootStrap;
}
public void setBootStrap(String bootStrap) {
this.bootStrap = bootStrap;
}
public String getGroup() {
return group;
}
public void setGroup(String group) {
this.group = group;
}
public String getTopic() {
return topic;
}
public void setTopic(String topic) {
this.topic = topic;
}
@Override
public String toString() {
return "KafkaConsumerProperties [bootStrap=" + bootStrap + ", group=" + group + ", topic=" + topic + "]";
}
}
提前致谢
由于您没有为KafkaConsumerProperties
组件提供任何bean名称,因此默认值为de-capitalized class name。那是一个。
您在@KafkaListener
中使用的表达式是常规bean definition phase expression,因此根对象是一些BeanExpressionContext
,但是当您尝试通过该属性访问时,不是您的侦听器bean。
不确定你是否需要在这个监听器中使用KafkaConsumerProperties
属性,但表达式必须要求kafkaConsumerProperties
bean:
@Service
public class kafkaConsumerService {
private SimpMessagingTemplate template;
@Autowired
public kafkaConsumerService(SimpMessagingTemplate template) {
this.template=template;
}
@KafkaListener(topics = {"#{kafkaConsumerProperties.topic}"})
// @KafkaListener(topics="Chandan3706")
public void consume(@Payload Message message) {
System.out.println("from kafka topic::" + message);
template.convertAndSend("/chat/getMessage", message);
}
}