| | |
| | | package com.java110.front; |
| | | |
| | | import com.java110.core.smo.impl.ComputeFeeSMOImpl; |
| | | import com.java110.service.init.ServiceStartInit; |
| | | import org.slf4j.Logger; |
| | | import org.slf4j.LoggerFactory; |
| | |
| | | import org.springframework.boot.autoconfigure.SpringBootApplication; |
| | | import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration; |
| | | import org.springframework.boot.web.client.RestTemplateBuilder; |
| | | import org.springframework.cache.annotation.EnableCaching; |
| | | import org.springframework.cloud.client.discovery.EnableDiscoveryClient; |
| | | import org.springframework.cloud.client.loadbalancer.LoadBalanced; |
| | | import org.springframework.context.ApplicationContext; |
| | | import org.springframework.context.annotation.Bean; |
| | | import org.springframework.context.annotation.ComponentScan; |
| | | import org.springframework.context.annotation.FilterType; |
| | | import org.springframework.http.converter.StringHttpMessageConverter; |
| | | import org.springframework.web.client.RestTemplate; |
| | | |
| | |
| | | * @date 2016年8月6日 |
| | | * @tag |
| | | */ |
| | | @SpringBootApplication(scanBasePackages = { |
| | | "com.java110.service.configuration", |
| | | @SpringBootApplication |
| | | @ComponentScan(basePackages = { "com.java110.service.configuration", |
| | | "com.java110.service.init", |
| | | "com.java110.front", |
| | | "com.java110.core", |
| | | "com.java110.config.properties.code", |
| | | "com.java110.report" |
| | | }) |
| | | |
| | | "com.java110.report"},excludeFilters = |
| | | { |
| | | @ComponentScan.Filter(type = FilterType.REGEX,pattern = "com.java110.core.smo.*") |
| | | }) |
| | | @EnableDiscoveryClient |
| | | //@EnableConfigurationProperties(EventProperties.class) |
| | | @EnableAutoConfiguration(exclude = {DataSourceAutoConfiguration.class}) |
| | |
| | | |
| | | private static Logger logger = LoggerFactory.getLogger(FrontServiceApplicationStart.class); |
| | | |
| | | /** |
| | | * 实例化RestTemplate,通过@LoadBalanced注解开启均衡负载能力. |
| | | * |
| | | * @return restTemplate |
| | | */ |
| | | @Bean |
| | | public RestTemplate outRestTemplate() { |
| | | StringHttpMessageConverter m = new StringHttpMessageConverter(Charset.forName("UTF-8")); |
| | | RestTemplate restTemplate = new RestTemplateBuilder().additionalMessageConverters(m).build(); |
| | | return restTemplate; |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 实例化RestTemplate,通过@LoadBalanced注解开启均衡负载能力. |