13693261870
7 天以前 7f47e2cd4ed531b97e435af1a9f3f14b0faf5757
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");
    }
}