1234567891011121314151617181920212223242526272829 |
- package com.rongwei;
- import com.rongwei.rwcommonconfig.config.interceptor.BaseMetaObjectHandler;
- import org.mybatis.spring.annotation.MapperScan;
- import org.springframework.boot.SpringApplication;
- import org.springframework.boot.autoconfigure.SpringBootApplication;
- import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
- import org.springframework.cloud.openfeign.EnableFeignClients;
- import org.springframework.context.annotation.ComponentScan;
- import org.springframework.context.annotation.FilterType;
- import org.springframework.scheduling.annotation.EnableAsync;
- import org.springframework.scheduling.annotation.EnableScheduling;
- @SpringBootApplication
- @EnableDiscoveryClient
- @EnableFeignClients
- @MapperScan("com.rongwei.*.*.dao")
- //@EnableDistributedTransaction
- @EnableAsync
- @EnableScheduling
- @ComponentScan(basePackages = {"com.rongwei"}, excludeFilters = @ComponentScan.Filter(type = FilterType.ASSIGNABLE_TYPE,
- classes = {BaseMetaObjectHandler.class}))
- public class ZHSWApplication {
- public static void main(String[] args) {
- SpringApplication.run(ZHSWApplication.class, args);
- }
- }
|