| | |
| | | import com.java110.common.exception.InitConfigDataException; |
| | | import com.java110.common.exception.InitDataFlowContextException; |
| | | import com.java110.common.kafka.KafkaFactory; |
| | | import com.java110.core.base.AppBase; |
| | | import com.java110.core.base.controller.BaseController; |
| | | import com.java110.core.context.BusinessServiceDataFlow; |
| | | import com.java110.core.factory.DataTransactionFactory; |
| | | import com.java110.user.smo.IUserServiceSMO; |
| | | import org.apache.kafka.clients.consumer.ConsumerRecord; |
| | | import org.slf4j.Logger; |
| | | import org.slf4j.LoggerFactory; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.kafka.annotation.KafkaListener; |
| | | |
| | |
| | | */ |
| | | public class UserServiceKafka extends BaseController { |
| | | |
| | | private final static Logger logger = LoggerFactory.getLogger(UserServiceKafka.class); |
| | | |
| | | @Autowired |
| | | private IUserServiceSMO userServiceSMOImpl; |
| | | |