package im.zhaojun; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.context.annotation.EnableAspectJAutoProxy; import org.springframework.scheduling.annotation.EnableAsync; /** * @author zhaojun */ @EnableAsync @SpringBootApplication @EnableAspectJAutoProxy(exposeProxy = true) public class ZfileApplication { public static void main(String[] args) { SpringApplication.run(ZfileApplication.class, args); } }