|
|
|
@ -1,5 +1,5 @@ |
|
|
|
/* |
|
|
|
/* |
|
|
|
* Copyright 2002-2020 the original author or authors. |
|
|
|
* Copyright 2002-2021 the original author or authors. |
|
|
|
* |
|
|
|
* |
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
|
|
|
* you may not use this file except in compliance with the License. |
|
|
|
* you may not use this file except in compliance with the License. |
|
|
|
@ -53,6 +53,7 @@ import org.springframework.util.ClassUtils; |
|
|
|
import org.springframework.util.CollectionUtils; |
|
|
|
import org.springframework.util.CollectionUtils; |
|
|
|
import org.springframework.util.LinkedMultiValueMap; |
|
|
|
import org.springframework.util.LinkedMultiValueMap; |
|
|
|
import org.springframework.util.MultiValueMap; |
|
|
|
import org.springframework.util.MultiValueMap; |
|
|
|
|
|
|
|
import org.springframework.util.StringUtils; |
|
|
|
import org.springframework.util.concurrent.ListenableFuture; |
|
|
|
import org.springframework.util.concurrent.ListenableFuture; |
|
|
|
import org.springframework.util.concurrent.ListenableFutureCallback; |
|
|
|
import org.springframework.util.concurrent.ListenableFutureCallback; |
|
|
|
|
|
|
|
|
|
|
|
@ -319,9 +320,12 @@ public abstract class AbstractMethodMessageHandler<T> |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private String formatMappings(Class<?> userType, Map<Method, T> methods) { |
|
|
|
private String formatMappings(Class<?> userType, Map<Method, T> methods) { |
|
|
|
String formattedType = Arrays.stream(ClassUtils.getPackageName(userType).split("\\.")) |
|
|
|
String packageName = ClassUtils.getPackageName(userType); |
|
|
|
.map(p -> p.substring(0, 1)) |
|
|
|
String formattedType = (StringUtils.hasText(packageName) ? |
|
|
|
.collect(Collectors.joining(".", "", "." + userType.getSimpleName())); |
|
|
|
Arrays.stream(packageName.split("\\.")) |
|
|
|
|
|
|
|
.map(packageSegment -> packageSegment.substring(0, 1)) |
|
|
|
|
|
|
|
.collect(Collectors.joining(".", "", "." + userType.getSimpleName())) : |
|
|
|
|
|
|
|
userType.getSimpleName()); |
|
|
|
Function<Method, String> methodFormatter = method -> Arrays.stream(method.getParameterTypes()) |
|
|
|
Function<Method, String> methodFormatter = method -> Arrays.stream(method.getParameterTypes()) |
|
|
|
.map(Class::getSimpleName) |
|
|
|
.map(Class::getSimpleName) |
|
|
|
.collect(Collectors.joining(",", "(", ")")); |
|
|
|
.collect(Collectors.joining(",", "(", ")")); |
|
|
|
|