|
|
@ -9,13 +9,19 @@ import org.springframework.boot.SpringApplication; |
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication; |
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication; |
|
|
import org.springframework.boot.web.servlet.ServletComponentScan; |
|
|
import org.springframework.boot.web.servlet.ServletComponentScan; |
|
|
import org.springframework.context.ConfigurableApplicationContext; |
|
|
import org.springframework.context.ConfigurableApplicationContext; |
|
|
|
|
|
import org.springframework.context.annotation.ComponentScan; |
|
|
import org.springframework.context.annotation.Configuration; |
|
|
import org.springframework.context.annotation.Configuration; |
|
|
|
|
|
import org.springframework.context.annotation.FilterType; |
|
|
|
|
|
|
|
|
@ServletComponentScan |
|
|
@ServletComponentScan |
|
|
@SpringBootApplication(scanBasePackages = {"com.lnsoft"}) |
|
|
@SpringBootApplication(scanBasePackages = {"com.lnsoft"}) |
|
|
@Configuration |
|
|
@Configuration |
|
|
@EnableSwaggerBootstrapUI |
|
|
@EnableSwaggerBootstrapUI |
|
|
@MapperScan("com.lnsoft.sdhxgk.**.mapper") |
|
|
@MapperScan("com.lnsoft.sdhxgk.**.mapper") |
|
|
|
|
|
@ComponentScan(excludeFilters = { |
|
|
|
|
|
@ComponentScan.Filter(type = FilterType.ASSIGNABLE_TYPE, |
|
|
|
|
|
classes = com.lnsoft.sdhxgk.rtd.RtdClients.class) |
|
|
|
|
|
}) |
|
|
public class JobAlarmApplication { |
|
|
public class JobAlarmApplication { |
|
|
|
|
|
|
|
|
private static final Logger LOGGER = LoggerFactory |
|
|
private static final Logger LOGGER = LoggerFactory |
|
|
|