From c7cd1d20cb9cbfd16a0edcdfa4bf9570a8c71b5b Mon Sep 17 00:00:00 2001 From: thinkgem Date: Sun, 19 Oct 2025 13:24:51 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=20Application=20=E5=90=AF?= =?UTF-8?q?=E5=8A=A8=E5=AE=8C=E6=88=90=E8=BE=93=E5=87=BA=E7=9A=84=E6=8F=90?= =?UTF-8?q?=E7=A4=BA=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/com/jeesite/modules/Application.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/web/src/main/java/com/jeesite/modules/Application.java b/web/src/main/java/com/jeesite/modules/Application.java index 84849f68..c2bfc5b4 100644 --- a/web/src/main/java/com/jeesite/modules/Application.java +++ b/web/src/main/java/com/jeesite/modules/Application.java @@ -25,12 +25,12 @@ public class Application extends SpringBootServletInitializer { public static void main(String[] args) { SpringApplication.run(Application.class, args); logger.info( - "\r\n\r\n==============================================================\r\n" - + "\r\n 启动完成,访问地址:http://127.0.0.1:" - + Global.getProperty("server.port") + FileUtils.path("/" - + Global.getProperty("server.servlet.context-path")) - + "\r\n\r\n 默认管理账号: system 密码: admin" - + "\r\n\r\n==============================================================\r\n"); + "\n\n==============================================================\n" + + "\n 启动完成,访问地址:http://127.0.0.1:{}\n" + + "\n 默认管理账号: system 密码: admin\n" + + "\n==============================================================\n", + Global.getProperty("server.port") + FileUtils.path("/" + + Global.getProperty("server.servlet.context-path"))); } @Override