@@ -411,9 +411,9 @@ private HandlerMethod handlerMethod(String methodName, Class<?>... paramTypes) t
411
411
private interface HandlerIfc {
412
412
413
413
String handleInInterface (
414
- @ CookieValue ("cookie" ) int cookie ,
415
- @ PathVariable ("pathvar" ) String pathvar ,
416
- @ RequestHeader ("header" ) String header ,
414
+ @ CookieValue ("cookie" ) int cookieV ,
415
+ @ PathVariable ("pathvar" ) String pathvarV ,
416
+ @ RequestHeader ("header" ) String headerV ,
417
417
@ RequestHeader (defaultValue = "#{systemProperties.systemHeader}" ) String systemHeader ,
418
418
@ RequestHeader Map <String , Object > headerMap ,
419
419
@ RequestParam ("dateParam" ) Date dateParam ,
@@ -459,9 +459,9 @@ public void model(Model model) {
459
459
}
460
460
461
461
public String handle (
462
- @ CookieValue ("cookie" ) int cookie ,
463
- @ PathVariable ("pathvar" ) String pathvar ,
464
- @ RequestHeader ("header" ) String header ,
462
+ @ CookieValue ("cookie" ) int cookieV ,
463
+ @ PathVariable ("pathvar" ) String pathvarV ,
464
+ @ RequestHeader ("header" ) String headerV ,
465
465
@ RequestHeader (defaultValue = "#{systemProperties.systemHeader}" ) String systemHeader ,
466
466
@ RequestHeader Map <String , Object > headerMap ,
467
467
@ RequestParam ("dateParam" ) Date dateParam ,
@@ -481,7 +481,7 @@ public String handle(
481
481
Model model ,
482
482
UriComponentsBuilder builder ) {
483
483
484
- model .addAttribute ("cookie" , cookie ).addAttribute ("pathvar" , pathvar ).addAttribute ("header" , header )
484
+ model .addAttribute ("cookie" , cookieV ).addAttribute ("pathvar" , pathvarV ).addAttribute ("header" , headerV )
485
485
.addAttribute ("systemHeader" , systemHeader ).addAttribute ("headerMap" , headerMap )
486
486
.addAttribute ("dateParam" , dateParam ).addAttribute ("paramMap" , paramMap )
487
487
.addAttribute ("paramByConvention" , paramByConvention ).addAttribute ("value" , value )
@@ -498,9 +498,9 @@ public String handle(
498
498
499
499
@ Override
500
500
public String handleInInterface (
501
- int cookie ,
502
- String pathvar ,
503
- String header ,
501
+ int cookieV ,
502
+ String pathvarV ,
503
+ String headerV ,
504
504
String systemHeader ,
505
505
Map <String , Object > headerMap ,
506
506
Date dateParam ,
@@ -520,7 +520,7 @@ public String handleInInterface(
520
520
Model model ,
521
521
UriComponentsBuilder builder ) {
522
522
523
- model .addAttribute ("cookie" , cookie ).addAttribute ("pathvar" , pathvar ).addAttribute ("header" , header )
523
+ model .addAttribute ("cookie" , cookieV ).addAttribute ("pathvar" , pathvarV ).addAttribute ("header" , headerV )
524
524
.addAttribute ("systemHeader" , systemHeader ).addAttribute ("headerMap" , headerMap )
525
525
.addAttribute ("dateParam" , dateParam ).addAttribute ("paramMap" , paramMap )
526
526
.addAttribute ("paramByConvention" , paramByConvention ).addAttribute ("value" , value )
0 commit comments