| | |
| | | package com.java110.report; |
| | | |
| | | import com.java110.core.annotation.Java110CmdDiscovery; |
| | | import com.java110.core.annotation.Java110ListenerDiscovery; |
| | | import com.java110.core.client.RestTemplate; |
| | | import com.java110.core.event.cmd.ServiceCmdEventPublishing; |
| | | import com.java110.core.event.service.BusinessServiceDataFlowEventPublishing; |
| | | import com.java110.service.init.ServiceStartInit; |
| | | import org.slf4j.Logger; |
| | |
| | | exclude = {LiquibaseAutoConfiguration.class, |
| | | org.springframework.boot.autoconfigure.security.servlet.SecurityAutoConfiguration.class}) |
| | | @EnableDiscoveryClient |
| | | @Java110ListenerDiscovery(listenerPublishClass = BusinessServiceDataFlowEventPublishing.class, |
| | | basePackages = {"com.java110.report.listener"}) |
| | | @EnableFeignClients(basePackages = {"com.java110.intf.user","com.java110.intf.order"}) |
| | | @Java110CmdDiscovery(cmdPublishClass = ServiceCmdEventPublishing.class, |
| | | basePackages = {"com.java110.report.cmd"}) |
| | | @EnableFeignClients(basePackages = {"com.java110.intf.user", |
| | | "com.java110.intf.order", |
| | | "com.java110.intf.common", |
| | | "com.java110.intf.store", |
| | | "com.java110.intf.user", |
| | | "com.java110.intf.fee", |
| | | "com.java110.intf.community"}) |
| | | public class ReportServiceApplicationStart { |
| | | |
| | | private static Logger logger = LoggerFactory.getLogger(ReportServiceApplicationStart.class); |