package com.ccsens.ptccsens; import org.mybatis.spring.annotation.MapperScan; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.web.servlet.ServletComponentScan; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.EnableAspectJAutoProxy; import org.springframework.context.annotation.FilterType; import org.springframework.scheduling.annotation.EnableAsync; /** * @author whj */ @MapperScan(basePackages = {"com.ccsens.ptccsens.persist.*"}) @ServletComponentScan @EnableAsync @SpringBootApplication @ComponentScan(basePackages = {"com.ccsens","com.ccsensptos"}) public class PtCcsensApplication { public static void main(String[] args) { SpringApplication.run(PtCcsensApplication.class, args); } }