UserServiceBean.java 333 B

1234567891011121314151617
  1. package com.java110.user.kafka;
  2. import org.springframework.context.annotation.Bean;
  3. import org.springframework.context.annotation.Configuration;
  4. /**
  5. * Created by wuxw on 2018/4/15.
  6. */
  7. @Configuration
  8. public class UserServiceBean {
  9. @Bean
  10. public UserServiceKafka listener() {
  11. return new UserServiceKafka();
  12. }
  13. }