Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
S
shop
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
曲欣亮
shop
Commits
f02d2829
Commit
f02d2829
authored
Jan 29, 2024
by
张永
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
V1.1.7.2
parent
b1152005
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
3 deletions
+9
-3
pom.xml
pom.xml
+1
-1
IDCSystemLogAspect.java
...a/com/egolm/shop/common/component/IDCSystemLogAspect.java
+3
-2
application.properties
src/main/resources/application.properties
+3
-0
redmine.html
src/main/resources/templates/redmine.html
+2
-0
No files found.
pom.xml
View file @
f02d2829
...
...
@@ -209,7 +209,7 @@
</executions>
<configuration>
<repository>
dockerhub.linkfern.com/b2c/shopapi
</repository>
<tag>
V1.1.7.
1
</tag>
<tag>
V1.1.7.
2
</tag>
<buildArgs>
<JAR_FILE>
${project.build.finalName}.jar
</JAR_FILE>
</buildArgs>
...
...
src/main/java/com/egolm/shop/common/component/IDCSystemLogAspect.java
View file @
f02d2829
...
...
@@ -47,7 +47,8 @@ public class IDCSystemLogAspect {
@Autowired
private
JdbcTemplate
jdbcTemplate
;
@Value
(
"${server.shop.name:shop}"
)
private
String
serverShopName
;
// 扫描使用@LogResource注解的方法
@Pointcut
(
"@annotation(com.egolm.shop.common.component.IDCLogResource)"
)
...
...
@@ -90,7 +91,7 @@ public class IDCSystemLogAspect {
void
syncSaveLog
(
ProceedingJoinPoint
joinPoint
,
Date
startTime
,
Date
endTime
,
String
exception
,
String
result
,
int
statusCode
)
{
TIdcServicesLogs
log
=
new
TIdcServicesLogs
();
log
.
setsChannel
(
"shop"
);
log
.
setsChannel
(
serverShopName
);
try
{
//获取请求参数,不通过 joinPoint.getArgs() 获取。
...
...
src/main/resources/application.properties
View file @
f02d2829
...
...
@@ -5,6 +5,9 @@ server.port=30005
server.servlet.context-path
=
/shop
server.session.timeout
=
90000
server.tomcat.uri-encoding
=
utf-8
server.shop.name
=
shop
spring.http.multipart.maxFileSize
=
5MB
spring.http.multipart.maxRequestSize
=
5MB
spring.http.encoding.force
=
true
...
...
src/main/resources/templates/redmine.html
View file @
f02d2829
...
...
@@ -24,6 +24,8 @@
</head>
<body>
<div
id=
"app"
>
<el-divider
content-position=
"left"
>
V1.1.7.2 2024-1-29
</el-divider>
<p
class=
"title"
>
1.增加server.shop.name参数,便于分布式布署区分日志。
</p>
<el-divider
content-position=
"left"
>
V1.1.7.1 2024-1-18
</el-divider>
<p
class=
"title"
>
1.张亮观测云测试
</p>
<el-divider
content-position=
"left"
>
V1.1.7 2024-1-11
</el-divider>
...
...
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