也许不公开或无效?使用Spring的Websocket和Kafka

时间:2018-09-10 06:13:28

标签: spring spring-websocket spring-kafka

当我尝试使用某个主题(主题名称基于用户)中的数据时,在运行时,我尝试使用该主题中的消息,但出现以下错误。

  

原因:   org.springframework.expression.spel.SpelEvaluationException:EL1008E:   无法在的对象上找到属性或字段“ consumerProperties”   输入'org.springframework.beans.factory.config.BeanExpressionContext'   -可能不公开或无效?

这是我的代码

@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);
    }

}

我的KafkaConsumerProperties.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 + "]";
    }
}

预先感谢

1 个答案:

答案 0 :(得分:1)

由于您没有为KafkaConsumerProperties组件提供任何bean名称,因此默认名称为de-capitalized class name。就是那个。

您在@KafkaListener中使用的表达式是常规bean definition phase expression,因此,根对象是某个BeanExpressionContext,但不是您的侦听器bean,因为您尝试通过该属性进行访问。 / p>

不确定在此侦听器中是否需要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);
    }

}