初始化
This commit is contained in:
19
pqs-gateway/src/main/java/com/njcn/gateway/GatewayMain.java
Normal file
19
pqs-gateway/src/main/java/com/njcn/gateway/GatewayMain.java
Normal file
@@ -0,0 +1,19 @@
|
||||
package com.njcn.gateway;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
import org.springframework.cloud.openfeign.EnableFeignClients;
|
||||
|
||||
/**
|
||||
* @author hongawen
|
||||
* @version 1.0.0
|
||||
* @date 2021年05月10日 14:03
|
||||
*/
|
||||
@EnableFeignClients
|
||||
@SpringBootApplication
|
||||
public class GatewayMain {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(GatewayMain.class,args);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user