| | |
| | | |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.boot.SpringApplication; |
| | | import org.springframework.boot.autoconfigure.ImportAutoConfiguration; |
| | | import org.springframework.boot.autoconfigure.SpringBootApplication; |
| | | import org.springframework.cache.annotation.EnableCaching; |
| | | import org.springframework.cloud.openfeign.EnableFeignClients; |
| | | import org.springframework.cloud.openfeign.FeignAutoConfiguration; |
| | | import org.springframework.transaction.annotation.EnableTransactionManagement; |
| | | |
| | | @Slf4j |
| | | @EnableCaching |
| | | @EnableTransactionManagement |
| | | @EnableFeignClients(basePackages = {"com.ycl.web"}) |
| | | @ImportAutoConfiguration({FeignAutoConfiguration.class}) |
| | | @SpringBootApplication |
| | | public class PlatformApplication { |
| | | public static void main(String[] args) { |