13693261870
7 天以前 b8d62de41ff7e1e0549061308aa11f68cf881ed9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.terra.collect;
 
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.EnableAspectJAutoProxy;
import org.springframework.scheduling.annotation.EnableAsync;
 
@EnableAsync
@EnableAspectJAutoProxy(exposeProxy = true)
@SpringBootApplication(scanBasePackages = {"com.terra.collect.*"})
public class SeCollectApp
{
    public static void main(String[] args)
    {
        SpringApplication.run(SeCollectApp.class, args);
        System.out.println("----------数据汇集启动成功----------  \n");
    }
}