java110
2020-10-22 e4dbdce2825a07cd11f99b98cf58e94ebb20e233
service-front/src/main/java/com/java110/front/FrontServiceApplicationStart.java
@@ -1,5 +1,6 @@
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;
@@ -8,10 +9,13 @@
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;
@@ -27,15 +31,16 @@
 * @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"
},excludeName = {"com.java110.core.smo"})
        "com.java110.report"},excludeFilters =
        {
                @ComponentScan.Filter(type = FilterType.REGEX,pattern = "com.java110.core.smo.*")
        })
@EnableDiscoveryClient
//@EnableConfigurationProperties(EventProperties.class)
@EnableAutoConfiguration(exclude = {DataSourceAutoConfiguration.class})