From d1b04dfba777c054a2e174e4cbdb9895faf4f5b9 Mon Sep 17 00:00:00 2001 From: miaowenbo <1670593359@qq.com> Date: Thu, 20 Nov 2025 20:16:32 +0800 Subject: [PATCH] =?UTF-8?q?feat:=E6=B7=BB=E5=8A=A0=E5=90=AF=E5=8A=A8?= =?UTF-8?q?=E6=88=90=E5=8A=9F=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/com/xboe/BoeServerAllApplication.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/servers/boe-server-all/src/main/java/com/xboe/BoeServerAllApplication.java b/servers/boe-server-all/src/main/java/com/xboe/BoeServerAllApplication.java index c1e9b951..2ea4ef0d 100644 --- a/servers/boe-server-all/src/main/java/com/xboe/BoeServerAllApplication.java +++ b/servers/boe-server-all/src/main/java/com/xboe/BoeServerAllApplication.java @@ -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