Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
李小龙
/
rapidplatform-cloud
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
bf67c4d3
authored
Jan 05, 2026
by
xlx
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
style(boot): 简化应用程序启动日志输出
- 移除认证授权中心启动日志中的装饰性字符和ASCII艺术 - 移
parent
735cb3c3
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
22 deletions
matchtech-auth/matchtech-auth-idm/src/main/java/com/matchtech/matchtechauthidm/MatchtechAuthIdmApplication.java
matchtech-auth/matchtech-auth-local/src/main/java/com/matchtech/matchtechauthlocal/MatchtechAuthLocalApplication.java
matchtech-modules/matchtech-modules-file/src/main/java/com/matchtech/file/MatchtechFileApplication.java
matchtech-modules/matchtech-modules-job/src/main/java/com/matchtech/job/MatchtechJobApplication.java
matchtech-auth/matchtech-auth-idm/src/main/java/com/matchtech/matchtechauthidm/MatchtechAuthIdmApplication.java
View file @
bf67c4d3
...
...
@@ -12,6 +12,6 @@ public class MatchtechAuthIdmApplication
public
static
void
main
(
String
[]
args
)
{
SpringApplication
.
run
(
MatchtechAuthIdmApplication
.
class
,
args
);
System
.
out
.
println
(
"
(♥◠‿◠)ノ゙ 认证授权中心启动成功 ლ(´ڡ`ლ)゙ \n
"
);
System
.
out
.
println
(
"
认证授权中心启动成功
"
);
}
}
\ No newline at end of file
matchtech-auth/matchtech-auth-local/src/main/java/com/matchtech/matchtechauthlocal/MatchtechAuthLocalApplication.java
View file @
bf67c4d3
...
...
@@ -12,6 +12,6 @@ public class MatchtechAuthLocalApplication
public
static
void
main
(
String
[]
args
)
{
SpringApplication
.
run
(
MatchtechAuthLocalApplication
.
class
,
args
);
System
.
out
.
println
(
"
(♥◠‿◠)ノ゙ 认证授权中心启动成功 ლ(´ڡ`ლ)゙ \n
"
);
System
.
out
.
println
(
"
认证授权中心启动成功
"
);
}
}
\ No newline at end of file
matchtech-modules/matchtech-modules-file/src/main/java/com/matchtech/file/MatchtechFileApplication.java
View file @
bf67c4d3
...
...
@@ -15,15 +15,6 @@ public class MatchtechFileApplication
public
static
void
main
(
String
[]
args
)
{
SpringApplication
.
run
(
MatchtechFileApplication
.
class
,
args
);
System
.
out
.
println
(
"(♥◠‿◠)ノ゙ 文件服务模块启动成功 ლ(´ڡ`ლ)゙ \n"
+
" .-------. ____ __ \n"
+
" | _ _ \\ \\ \\ / / \n"
+
" | ( ' ) | \\ _. / ' \n"
+
" |(_ o _) / _( )_ .' \n"
+
" | (_,_).' __ ___(_ o _)' \n"
+
" | |\\ \\ | || |(_,_)' \n"
+
" | | \\ `' /| `-' / \n"
+
" | | \\ / \\ / \n"
+
" ''-' `'-' `-..-' "
);
System
.
out
.
println
(
"文件服务模块启动成功"
);
}
}
matchtech-modules/matchtech-modules-job/src/main/java/com/matchtech/job/MatchtechJobApplication.java
View file @
bf67c4d3
...
...
@@ -18,15 +18,6 @@ public class MatchtechJobApplication
public
static
void
main
(
String
[]
args
)
{
SpringApplication
.
run
(
MatchtechJobApplication
.
class
,
args
);
System
.
out
.
println
(
"(♥◠‿◠)ノ゙ 定时任务模块启动成功 ლ(´ڡ`ლ)゙ \n"
+
" .-------. ____ __ \n"
+
" | _ _ \\ \\ \\ / / \n"
+
" | ( ' ) | \\ _. / ' \n"
+
" |(_ o _) / _( )_ .' \n"
+
" | (_,_).' __ ___(_ o _)' \n"
+
" | |\\ \\ | || |(_,_)' \n"
+
" | | \\ `' /| `-' / \n"
+
" | | \\ / \\ / \n"
+
" ''-' `'-' `-..-' "
);
System
.
out
.
println
(
"定时任务模块启动成功"
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment