This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
package jnpf;
|
||||
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
import org.springframework.cloud.openfeign.EnableFeignClients;
|
||||
|
||||
/**
|
||||
* 翻台宝服务启动类
|
||||
*
|
||||
* @author yanwenfu
|
||||
* @create 2023-07-11
|
||||
*/
|
||||
@SpringBootApplication
|
||||
@EnableFeignClients
|
||||
@Slf4j
|
||||
public class JnpfFtbApplication {
|
||||
|
||||
public static void main(String[] args) {
|
||||
long start = System.currentTimeMillis();
|
||||
SpringApplication.run(JnpfFtbApplication.class, args);
|
||||
System.out.println("翻台宝服务启动成功,耗时:" + (System.currentTimeMillis() - start) + "毫秒");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user