Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
Y
yzg-util
Project
Project
Details
Activity
Releases
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
YZG
yzg-util
Commits
ebdccda0
Commit
ebdccda0
authored
Mar 22, 2019
by
yanzg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
正则表达式匹配
parent
e704c816
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
FeignAspect.java
.../src/main/java/com/yanzuoguang/cloud/aop/FeignAspect.java
+3
-3
WebAspect.java
...ud/src/main/java/com/yanzuoguang/cloud/aop/WebAspect.java
+3
-3
No files found.
yzg-util-cloud/src/main/java/com/yanzuoguang/cloud/aop/FeignAspect.java
View file @
ebdccda0
...
...
@@ -15,8 +15,8 @@ import org.springframework.stereotype.Component;
/**
* 接口切面,用于验证接口回调返回参数
*/
@Aspect
@Component
//
@Aspect
//
@Component
public
class
FeignAspect
extends
AbstractValidateAspect
{
private
static
final
Logger
logger
=
LoggerFactory
.
getLogger
(
FeignAspect
.
class
);
...
...
@@ -24,7 +24,7 @@ public class FeignAspect extends AbstractValidateAspect {
/**
* AOP的表达式
*/
@Pointcut
(
"execution(* *..feign..Feign..*(..)
)"
)
// @Pointcut("bean(*Feign
)")
public
void
feignAspect
()
{
}
...
...
yzg-util-cloud/src/main/java/com/yanzuoguang/cloud/aop/WebAspect.java
View file @
ebdccda0
...
...
@@ -41,8 +41,8 @@ import java.util.concurrent.LinkedBlockingQueue;
* @author: Kang
* @time: 2018年04月25日 11:43
*/
@Aspect
@Component
//
@Aspect
//
@Component
public
class
WebAspect
extends
AbstractValidateAspect
implements
ThreadNext
.
Next
{
private
static
final
Logger
logger
=
LoggerFactory
.
getLogger
(
WebAspect
.
class
);
...
...
@@ -76,7 +76,7 @@ public class WebAspect extends AbstractValidateAspect implements ThreadNext.Next
/**
* exec aop point aspect
*/
@Pointcut
(
"execution(* *..web..Controller..*(..)
)"
)
// @Pointcut("bean(*Controller
)")
public
void
webAspect
()
{
}
...
...
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