feat:添加启动成功提示

This commit is contained in:
miaowenbo
2025-11-20 20:16:32 +08:00
parent f7513d0480
commit d1b04dfba7

View File

@@ -1,5 +1,6 @@
package com.xboe;
import lombok.extern.slf4j.Slf4j;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.system.ApplicationPid;
@@ -23,11 +24,13 @@ import java.io.IOException;
@EnableScheduling
@EnableDiscoveryClient
@EnableFeignClients(basePackages = {"com.boe.feign.api.*.remote", "com.xboe.api"})
@Slf4j
public class BoeServerAllApplication {
public static void main(String[] args) {
System.setProperty("jasypt.encryptor.password", "jasypt");
SpringApplication.run(BoeServerAllApplication.class, args);
log.info("== BOE启动成功 ==");
}
@PostConstruct