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