Make HandlerFunctionDescription JDK 15 compatible

Update `HandlerFunctionDescription` so that it will work with JDK 15.

Closes gh-23442
2.1.x
Phillip Webb 4 years ago
parent 3da300fba9
commit cc442c5c0d

@ -29,7 +29,13 @@ public class HandlerFunctionDescription {
private final String className;
HandlerFunctionDescription(HandlerFunction<?> handlerFunction) {
this.className = handlerFunction.getClass().getCanonicalName();
this.className = getHandlerFunctionClassName(handlerFunction);
}
private static String getHandlerFunctionClassName(HandlerFunction<?> handlerFunction) {
Class<?> functionClass = handlerFunction.getClass();
String canonicalName = functionClass.getCanonicalName();
return (canonicalName != null) ? canonicalName : functionClass.getName();
}
public String getClassName() {

Loading…
Cancel
Save