Skip to content

修复#6127 #6130 #6173

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
import org.jeecg.common.util.SpringContextUtils;
import org.jeecg.common.util.oConvertUtils;
import org.springframework.core.LocalVariableTableParameterNameDiscoverer;
import org.springframework.core.StandardReflectionParameterNameDiscoverer;
import org.springframework.stereotype.Component;
import org.springframework.validation.BindingResult;
import org.springframework.web.multipart.MultipartFile;
Expand Down Expand Up @@ -169,7 +170,7 @@ public boolean apply(Object o, String name, Object value) {
// 请求的方法参数值
Object[] args = joinPoint.getArgs();
// 请求的方法参数名称
LocalVariableTableParameterNameDiscoverer u = new LocalVariableTableParameterNameDiscoverer();
StandardReflectionParameterNameDiscoverer u=new StandardReflectionParameterNameDiscoverer();
String[] paramNames = u.getParameterNames(method);
if (args != null && paramNames != null) {
for (int i = 0; i < args.length; i++) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ management:
endpoints:
web:
exposure:
include: metrics,httptrace
include: metrics,httpexchanges

spring:
# flyway配置
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ management:
endpoints:
web:
exposure:
include: metrics,httptrace
include: metrics,httpexchanges

spring:
# flyway配置
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ management:
endpoints:
web:
exposure:
include: metrics,httptrace
include: metrics,httpexchanges

spring:
# flyway配置
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,14 @@ spring:
nacos:
discovery:
server-addr: @config.server-addr@
namespace: @config.namespace@
metadata:
user.name: ${spring.security.user.name}
user.password: ${spring.security.user.password}
# 服务端点检查
management:
trace:
http:
httpexchanges:
recording:
enabled: true
endpoints:
web:
Expand Down