old mode 100644
new mode 100755
| | |
| | | package com.java110.job; |
| | | |
| | | import com.java110.core.annotation.Java110ListenerDiscovery; |
| | | import com.java110.core.event.center.DataFlowEventPublishing; |
| | | import com.java110.core.client.RestTemplate; |
| | | import com.java110.core.event.service.BusinessServiceDataFlowEventPublishing; |
| | | import com.java110.service.init.ServiceStartInit; |
| | | import org.slf4j.Logger; |
| | |
| | | import org.springframework.context.ApplicationContext; |
| | | import org.springframework.context.annotation.Bean; |
| | | import org.springframework.http.converter.StringHttpMessageConverter; |
| | | import org.springframework.scheduling.annotation.EnableAsync; |
| | | import org.springframework.scheduling.annotation.EnableScheduling; |
| | | import org.springframework.web.client.RestTemplate; |
| | | |
| | | import java.nio.charset.Charset; |
| | | |
| | |
| | | "com.java110.core", |
| | | "com.java110.config.properties.code", |
| | | "com.java110.db"}, |
| | | excludeName = {"com.java110.core.smo.jobservice"} |
| | | excludeName = {"com.java110.intf.jobservice"} |
| | | ) |
| | | @EnableDiscoveryClient |
| | | @Java110ListenerDiscovery(listenerPublishClass = BusinessServiceDataFlowEventPublishing.class, |
| | | basePackages = {"com.java110.job.listener"}) |
| | | @EnableFeignClients(basePackages = { |
| | | "com.java110.core.smo.community", |
| | | "com.java110.core.smo.common", |
| | | "com.java110.core.smo.fee", |
| | | "com.java110.core.smo.user", |
| | | "com.java110.core.smo.order", |
| | | "com.java110.core.smo.store", |
| | | "com.java110.intf.community", |
| | | "com.java110.intf.common", |
| | | "com.java110.intf.fee", |
| | | "com.java110.intf.user", |
| | | "com.java110.intf.order", |
| | | "com.java110.intf.store", |
| | | "com.java110.intf.report", |
| | | "com.java110.intf.acct", |
| | | "com.java110.intf.oa", |
| | | "com.java110.intf.goods" |
| | | }) |
| | | @EnableScheduling |
| | | @EnableAsync |
| | | public class JobServiceApplication { |
| | | private static Logger logger = LoggerFactory.getLogger(JobServiceApplication.class); |
| | | |
| | | private static final String LISTENER_PATH = "java110.job.listeners"; |
| | | |
| | | @Bean |
| | | public RestTemplate outRestTemplate() { |
| | | StringHttpMessageConverter m = new StringHttpMessageConverter(Charset.forName("UTF-8")); |
| | | RestTemplate restTemplate = new RestTemplateBuilder().additionalMessageConverters(m).build(RestTemplate.class); |
| | | return restTemplate; |
| | | } |
| | | |
| | | @Bean |
| | | //@LoadBalanced |
| | | public RestTemplate formRestTemplate() { |
| | | RestTemplate restTemplate = new RestTemplate(); |
| | | restTemplate.getMessageConverters().add(new StringHttpMessageConverter(Charset.forName("UTF-8"))); |
| | | return restTemplate; |
| | | } |
| | | |
| | | /** |
| | | * 实例化RestTemplate,通过@LoadBalanced注解开启均衡负载能力. |
| | |
| | | @LoadBalanced |
| | | public RestTemplate restTemplate() { |
| | | StringHttpMessageConverter m = new StringHttpMessageConverter(Charset.forName("UTF-8")); |
| | | RestTemplate restTemplate = new RestTemplateBuilder().additionalMessageConverters(m).build(); |
| | | RestTemplate restTemplate = new RestTemplateBuilder().additionalMessageConverters(m).build(RestTemplate.class); |
| | | return restTemplate; |
| | | } |
| | | |
| | | public static void main(String[] args) throws Exception { |
| | | ServiceStartInit.preInitSystemConfig(); |
| | | ApplicationContext context = SpringApplication.run(JobServiceApplication.class, args); |
| | | ServiceStartInit.initSystemConfig(context); |
| | | //加载业务侦听 |