Make method accessible in GenericScope proxy target

Otherwise app crashes on first access of scoped proxy.

Fixes gh-261
This commit is contained in:
Dave Syer
2017-10-11 08:09:06 -04:00
parent 6149156fff
commit ccf613c29c
2 changed files with 9 additions and 5 deletions

View File

@@ -160,7 +160,8 @@ public class RefreshScopeConfigurationTests {
String message;
@RequestMapping("/")
public String hello() {
// Deliberately use package scope
String hello() {
return message;
}