Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
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
项目统一框架
amos-boot-biz
Commits
335fcc8c
Commit
335fcc8c
authored
Oct 10, 2024
by
李秀明
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
删除多余日志打印
parent
764d3bd1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
6 deletions
+0
-6
PluginInterceptor.java
...oin/equipmanage/common/interceptor/PluginInterceptor.java
+0
-3
PluginInterceptor.java
...oin/amos/knowledgebase/interceptor/PluginInterceptor.java
+0
-3
No files found.
amos-boot-module/amos-boot-module-api/amos-boot-module-equip-api/src/main/java/com/yeejoin/equipmanage/common/interceptor/PluginInterceptor.java
View file @
335fcc8c
...
@@ -35,8 +35,6 @@ public class PluginInterceptor implements Interceptor {
...
@@ -35,8 +35,6 @@ public class PluginInterceptor implements Interceptor {
* @throws Throwable
* @throws Throwable
*/
*/
public
Object
intercept
(
Invocation
invocation
)
throws
Throwable
{
public
Object
intercept
(
Invocation
invocation
)
throws
Throwable
{
System
.
out
.
println
(
"====intercept======"
);
Object
[]
args
=
invocation
.
getArgs
();
Object
[]
args
=
invocation
.
getArgs
();
MappedStatement
mappedStatement
=
(
MappedStatement
)
args
[
0
];
MappedStatement
mappedStatement
=
(
MappedStatement
)
args
[
0
];
Object
parameter
=
args
[
1
];
Object
parameter
=
args
[
1
];
...
@@ -101,7 +99,6 @@ public class PluginInterceptor implements Interceptor {
...
@@ -101,7 +99,6 @@ public class PluginInterceptor implements Interceptor {
}
}
public
Object
plugin
(
Object
target
)
{
public
Object
plugin
(
Object
target
)
{
System
.
out
.
println
(
"-----------------------------plugin-------------------------"
);
return
Plugin
.
wrap
(
target
,
this
);
return
Plugin
.
wrap
(
target
,
this
);
}
}
...
...
amos-boot-module/amos-boot-module-biz/amos-boot-module-knowledgebase-biz/src/main/java/com/yeejoin/amos/knowledgebase/interceptor/PluginInterceptor.java
View file @
335fcc8c
...
@@ -31,8 +31,6 @@ public class PluginInterceptor implements Interceptor {
...
@@ -31,8 +31,6 @@ public class PluginInterceptor implements Interceptor {
* @throws Throwable
* @throws Throwable
*/
*/
public
Object
intercept
(
Invocation
invocation
)
throws
Throwable
{
public
Object
intercept
(
Invocation
invocation
)
throws
Throwable
{
System
.
out
.
println
(
"====intercept======"
);
Object
[]
args
=
invocation
.
getArgs
();
Object
[]
args
=
invocation
.
getArgs
();
MappedStatement
mappedStatement
=
(
MappedStatement
)
args
[
0
];
MappedStatement
mappedStatement
=
(
MappedStatement
)
args
[
0
];
Object
parameter
=
args
[
1
];
Object
parameter
=
args
[
1
];
...
@@ -87,7 +85,6 @@ public class PluginInterceptor implements Interceptor {
...
@@ -87,7 +85,6 @@ public class PluginInterceptor implements Interceptor {
}
}
public
Object
plugin
(
Object
target
)
{
public
Object
plugin
(
Object
target
)
{
System
.
out
.
println
(
"-----------------------------plugin-------------------------"
);
return
Plugin
.
wrap
(
target
,
this
);
return
Plugin
.
wrap
(
target
,
this
);
}
}
...
...
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