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
ed1d00ea
Commit
ed1d00ea
authored
Mar 17, 2021
by
yanzg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改公式和计算帮助类
parent
98504df5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
86 additions
and
3 deletions
+86
-3
BaseRequestAspect.java
...ain/java/com/yanzuoguang/cloud/aop/BaseRequestAspect.java
+86
-3
No files found.
yzg-util-cloud/src/main/java/com/yanzuoguang/cloud/aop/BaseRequestAspect.java
View file @
ed1d00ea
...
@@ -9,14 +9,21 @@ import com.yanzuoguang.util.log.Log;
...
@@ -9,14 +9,21 @@ import com.yanzuoguang.util.log.Log;
import
com.yanzuoguang.util.vo.LogVo
;
import
com.yanzuoguang.util.vo.LogVo
;
import
com.yanzuoguang.util.vo.ResponseResult
;
import
com.yanzuoguang.util.vo.ResponseResult
;
import
org.aspectj.lang.ProceedingJoinPoint
;
import
org.aspectj.lang.ProceedingJoinPoint
;
import
org.aspectj.lang.Signature
;
import
org.aspectj.lang.reflect.MethodSignature
;
import
org.springframework.amqp.core.Message
;
import
org.springframework.amqp.core.Message
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Value
;
import
org.springframework.beans.factory.annotation.Value
;
import
org.springframework.cloud.openfeign.FeignClient
;
import
org.springframework.web.bind.annotation.GetMapping
;
import
org.springframework.web.bind.annotation.PostMapping
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.multipart.MultipartFile
;
import
org.springframework.web.multipart.MultipartFile
;
import
javax.servlet.http.HttpServlet
;
import
javax.servlet.http.HttpServlet
;
import
javax.servlet.http.HttpServletRequest
;
import
javax.servlet.http.HttpServletRequest
;
import
javax.servlet.http.HttpServletResponse
;
import
javax.servlet.http.HttpServletResponse
;
import
java.lang.reflect.Method
;
import
java.nio.channels.Channel
;
import
java.nio.channels.Channel
;
import
java.util.ArrayList
;
import
java.util.ArrayList
;
import
java.util.List
;
import
java.util.List
;
...
@@ -259,8 +266,84 @@ public class BaseRequestAspect {
...
@@ -259,8 +266,84 @@ public class BaseRequestAspect {
* @return
* @return
*/
*/
protected
String
getMethodUrl
(
ProceedingJoinPoint
joinPoint
)
{
protected
String
getMethodUrl
(
ProceedingJoinPoint
joinPoint
)
{
String
name
=
joinPoint
.
getSignature
().
getName
();
String
url
=
StringHelper
.
EMPTY
;
Signature
signature
=
joinPoint
.
getSignature
();
return
name
;
Class
declaringType
=
signature
.
getDeclaringType
();
String
name
=
signature
.
getName
();
FeignClient
feignClient
=
(
FeignClient
)
declaringType
.
getAnnotation
(
FeignClient
.
class
);
if
(
feignClient
!=
null
&&
signature
instanceof
MethodSignature
)
{
MethodSignature
methodSignature
=
(
MethodSignature
)
signature
;
Method
targetMethod
=
methodSignature
.
getMethod
();
// 类路径
RequestMapping
[]
classRequests
=
(
RequestMapping
[])
declaringType
.
getAnnotationsByType
(
RequestMapping
.
class
);
PostMapping
[]
classPosts
=
(
PostMapping
[])
declaringType
.
getAnnotationsByType
(
PostMapping
.
class
);
GetMapping
[]
classGets
=
(
GetMapping
[])
declaringType
.
getAnnotationsByType
(
GetMapping
.
class
);
// 方法路径
RequestMapping
[]
requests
=
targetMethod
.
getAnnotationsByType
(
RequestMapping
.
class
);
PostMapping
[]
posts
=
targetMethod
.
getAnnotationsByType
(
PostMapping
.
class
);
GetMapping
[]
gets
=
targetMethod
.
getAnnotationsByType
(
GetMapping
.
class
);
url
=
getFeignUrl
(
feignClient
,
classRequests
,
classPosts
,
classGets
,
requests
,
posts
,
gets
);
}
if
(
StringHelper
.
isEmpty
(
url
))
{
url
=
String
.
format
(
"%s.%s"
,
declaringType
.
getSimpleName
(),
name
);
}
return
url
;
}
/**
* 获取feign请求地址
*
* @param feignClient
* @param classRequests
* @param classPosts
* @param classGets
* @param requests
* @param posts
* @param gets
* @return
*/
private
String
getFeignUrl
(
FeignClient
feignClient
,
RequestMapping
[]
classRequests
,
PostMapping
[]
classPosts
,
GetMapping
[]
classGets
,
RequestMapping
[]
requests
,
PostMapping
[]
posts
,
GetMapping
[]
gets
)
{
StringBuilder
sb
=
new
StringBuilder
();
sb
.
append
(
feignClient
.
value
());
if
(
classRequests
!=
null
)
{
for
(
RequestMapping
item
:
classRequests
)
{
sb
.
append
(
item
.
value
()[
0
]);
}
}
if
(
classPosts
!=
null
)
{
for
(
PostMapping
item
:
classPosts
)
{
sb
.
append
(
item
.
value
()[
0
]);
}
}
if
(
classGets
!=
null
)
{
for
(
GetMapping
item
:
classGets
)
{
sb
.
append
(
item
.
value
()[
0
]);
}
}
if
(
requests
!=
null
)
{
for
(
RequestMapping
item
:
requests
)
{
sb
.
append
(
item
.
value
()[
0
]);
}
}
if
(
posts
!=
null
)
{
for
(
PostMapping
item
:
posts
)
{
sb
.
append
(
item
.
value
()[
0
]);
}
}
if
(
gets
!=
null
)
{
for
(
GetMapping
item
:
gets
)
{
sb
.
append
(
item
.
value
()[
0
]);
}
}
return
sb
.
toString
();
}
}
}
}
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