From ed54895e533f5ec28bc2f55de781ba5a9c11132c Mon Sep 17 00:00:00 2001 From: Juergen Hoeller Date: Wed, 18 Jul 2018 19:56:06 +0200 Subject: [PATCH] Consistent exposure of nested parameter type in binding exceptions --- .../web/bind/MissingPathVariableException.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-web/src/main/java/org/springframework/web/bind/MissingPathVariableException.java b/spring-web/src/main/java/org/springframework/web/bind/MissingPathVariableException.java index 8df3229746c..8142f04bbf9 100644 --- a/spring-web/src/main/java/org/springframework/web/bind/MissingPathVariableException.java +++ b/spring-web/src/main/java/org/springframework/web/bind/MissingPathVariableException.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2015 the original author or authors. + * Copyright 2002-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,7 +51,7 @@ public class MissingPathVariableException extends ServletRequestBindingException @Override public String getMessage() { return "Missing URI template variable '" + this.variableName + - "' for method parameter of type " + this.parameter.getParameterType().getSimpleName(); + "' for method parameter of type " + this.parameter.getNestedParameterType().getSimpleName(); } /**