提交 | 用户 | 时间
|
e7c126
|
1 |
package com.xxl.job.admin; |
H |
2 |
|
|
3 |
import org.springframework.boot.SpringApplication; |
|
4 |
import org.springframework.boot.autoconfigure.SpringBootApplication; |
d9f9ba
|
5 |
import org.springframework.cloud.client.discovery.EnableDiscoveryClient; |
e7c126
|
6 |
|
H |
7 |
/** |
|
8 |
* @author xuxueli 2018-10-28 00:38:13 |
|
9 |
*/ |
|
10 |
@SpringBootApplication |
d9f9ba
|
11 |
@EnableDiscoveryClient |
e7c126
|
12 |
public class XxlJobAdminApplication { |
H |
13 |
|
|
14 |
public static void main(String[] args) { |
|
15 |
SpringApplication.run(XxlJobAdminApplication.class, args); |
|
16 |
} |
|
17 |
|
|
18 |
} |