Skip to content

JagmohanSharma/SpringCloudRefreshScopeIssue

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SpringCloudRefreshScopeIssue

The class is used for dynamically initializing Property beans and dependent consumer, if any.

Now we are only registering a bean using BDRPP and setting its scope as refreshbut at the time of RefreshEvent we are not getting this bean refreshed.

First we read test.dynaProp.keys property and add a suffix Conf to beanName so it is service1Conf. Now we create bean and register it using BDRPP.

We have autowired service1Conf bean in our TestService which is being called from TestConstroller using below endpoints. Here TestProp is a bean which is explicitly marked using @REfreshScope so after RefreshEvent this is getting refreshed properly. but not the bean created using BDRPP.

Two end points: 1)

/rest/v1/getProp this will return original property values read from application.properties:

TestProp(@RefreshScope) first name newFIrstName
service1Conf(BDRPP) UserAgent TEST_USER_AGENT
service1Conf(BDRPP) connect timeout 4343

/rest/v1/updateEnv

This will add new property source to environment and publish RefreshEvent which should refresh beans as well but when we again hit /rest/v1/getProp

TestProp(@RefreshScope) first name newfirstname2
service1Conf(BDRPP) UserAgent TEST_USER_AGENT
service1Conf(BDRPP) connect timeout 4343

As we can see UserAgent and connect timeout values are not updated since its bean service1Conf is not getting refreshed.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published