Spring cloud config server using GitHub repository

  Рет қаралды 55,352

Java Techie

Java Techie

Күн бұрын

Пікірлер: 121
@RaviVerma-bg6ul
@RaviVerma-bg6ul 3 жыл бұрын
Due to your micro services video and all material like Kafka, Stream cloud and all , I got the job in MNC... THanks A lot Man. God Bless you
@Javatechie
@Javatechie 3 жыл бұрын
Glad to hear this Ravi . Congratulations 🎈 and rock on
@RaviVerma-bg6ul
@RaviVerma-bg6ul 3 жыл бұрын
@@Javatechie Thanks Sir
@darshansr9025
@darshansr9025 2 жыл бұрын
Hey, you have added all the info in your blog as well that's damn nice of you!!!!!
@ArshadKhan007
@ArshadKhan007 6 жыл бұрын
Awesome Explanation .... In my company we are using the same technology. These videos helping me lot to understand the microservices cloud concept....!! Thanks
@rkvlogs8047
@rkvlogs8047 9 ай бұрын
Great explanation 🎉🎉🎉
@maheshd3506
@maheshd3506 3 жыл бұрын
Great explanation it's easy to understand things, thanks for your efforts
@vaibhavsrivastava4645
@vaibhavsrivastava4645 2 жыл бұрын
Excellent video. Thanks for sharing knowledge.
@MahakalBaba2411
@MahakalBaba2411 3 жыл бұрын
as usual awesome explanation thanks Basant
@jjenisha-e3c
@jjenisha-e3c 6 ай бұрын
Really thank. I thought it was too difficult but u make it clear. I have doubts about if I have multiple rest control then all the urls should added in the git repository?
@भारत-झ7छ
@भारत-झ7छ 4 жыл бұрын
Great explanation sir 👍
@venkychannel2798
@venkychannel2798 3 жыл бұрын
Somehow refresh scope not refreshing properly.. whenever I chnages the provider url.. and chnaged same in properties file and when I add/chnaged something for the shake of devtools refreshing then only it is working .
@__.aabbyyysss.__7637
@__.aabbyyysss.__7637 5 ай бұрын
Thank you for all the videos. You have made multiple videos around spring cloud, how to connect all these videos and do a project so that we are confident as a production ready developer. Kindly help if there is a overall video or course.
@santoshkumar-hy2sb
@santoshkumar-hy2sb 5 жыл бұрын
best explained in simple terms.
@tejapolisetty3806
@tejapolisetty3806 4 жыл бұрын
such an awesome explanation, thanks a lot sir.
@harshsinha6067
@harshsinha6067 3 жыл бұрын
if you getting whitelabel error after configuring to git then I know that I'm posting this answer very very late. But, still posting it so that other folks can find this helpful. Now a days, default branch name of GitHub is "main", but Spring Cloud Config still looks for "master" as a label name. So, if you want to change the default behavior, you can always change the label name look up using below property in application.yml or application.properties: spring.cloud.config.server.git.default-label=main This worked very well for me. I'm using Spring Boot 2.3.6.RELEASE
@futago1109
@futago1109 4 жыл бұрын
Thank you its very useful to me . please keep up ur work!
@karunakaranm2240
@karunakaranm2240 6 ай бұрын
You are awesome,
@binodkumar-ej4is
@binodkumar-ej4is 3 жыл бұрын
Hi sir, Thanks for the video. I have some doubts like, 1. Can we fetch property file from any other branch rather than master branch. 2. If we save a file in git and name it as "application.properties" or "our config service project name.properties" , it is fetching data from both for default profile. How to differentiate between them?
@Javatechie
@Javatechie 3 жыл бұрын
1. Yes we can 2. Didn't get you properly
@binodkumar-ej4is
@binodkumar-ej4is 3 жыл бұрын
How to differentiate between multiple property files for different environments?
@Javatechie
@Javatechie 3 жыл бұрын
Please checkout my microservice playlist I explained there how can we keep file specific to environment
@noumaanmohammad1274
@noumaanmohammad1274 4 жыл бұрын
Followed same code as yours..getting exception while starting insurance-client app...error is .. lang.illegalArguementException: could not resolve placeholder 'insurance.provider.url' in value "${insurance.provider.url}" .... Can you please help.
@Javatechie
@Javatechie 3 жыл бұрын
Specify branch as main in application.yml file .just google its key
@Javatechie
@Javatechie 3 жыл бұрын
Use main instead of master
@ramesh22kvr
@ramesh22kvr 4 жыл бұрын
nice explanation,thanks a lot
@codingispassion6376
@codingispassion6376 Жыл бұрын
Sir i am facing problem with @refreshscope while setting the datasource. When i am adding @refreshscope in both class and method then after changing the profile from git repo it is changing the one database like if currently i am in devservice database then it is changing to prodservice but again when i am hitting the refresh endpoint it is not changing to devservice. I have also tried the spring bus but nothing is working. I think the problem is i am adding @Refreshscope at wrong place. But if i am removing the @Rscope annotation from method then i am getting an exception that my project is not connected with any database so for that i have moved datasource to the main method and autowired the class in which i am reading the properties using @Value both this is also not working but when i am adding @Rscope on datasource bean then it is changing the db connection for one environment as i said earlier. Please respond sir
@codeWithMeEasy
@codeWithMeEasy Жыл бұрын
Is cup service is alternative to config server to retrieve the properties?
@harshitkumar4007
@harshitkumar4007 4 жыл бұрын
I got useful knowledge..
@charansaigirish9363
@charansaigirish9363 3 жыл бұрын
A small doubt why you have added @Lazy in Client service?
@ArshadKhan007
@ArshadKhan007 6 жыл бұрын
If possible please make more videos on microservices cloud using NOSQL database
@Javatechie
@Javatechie 6 жыл бұрын
Arshad sure I will try to do
@AdarshSingh-go5ht
@AdarshSingh-go5ht 4 жыл бұрын
@Basant - I am getting below error. Please suggest how to resolve - Caused by: java.lang.IllegalArgumentException: Could not resolve placeholder 'insurance.provider.url' in value "${insurance.provider.url}" at org.springframework.util.PropertyPlaceholderHelper.parseStringValue(PropertyPlaceholderHelper.java:178) ~[spring-core-5.2.5.RELEASE.jar:5.2.5.RELEASE]
@Javatechie
@Javatechie 4 жыл бұрын
Did you provide your config server url in configuration file
@AdarshSingh-go5ht
@AdarshSingh-go5ht 4 жыл бұрын
@@Javatechie - Yes, i provided GIT uri like below - spring.cloud.config.server.git.uri=github.com/ADARSH2690/insurance-config-server
@Javatechie
@Javatechie 4 жыл бұрын
No am talking about in client application did you point to config server Spring,config.server.url=localhost:port number
@venugopalreddy9874
@venugopalreddy9874 4 жыл бұрын
@@AdarshSingh-go5ht did it solved?
@mohammedshabbir1347
@mohammedshabbir1347 2 жыл бұрын
Awesome video
@karan12171
@karan12171 Жыл бұрын
we must learn github to learn this microservices...??????pls reply
@Javatechie
@Javatechie Жыл бұрын
Yes basic required ! GitHub is dead easy buddy please checkout my GitHub playlist
@pratapjavasingh3239
@pratapjavasingh3239 6 жыл бұрын
upload more video in micro service with the interview prospective and explaining the code before Theory concept and suppose we not manage the approach these way then what we have alternate solution also discuss bcz when i learn the micro then lot of third party are there so please tell his name like eureka manage the load balancing but again ribbon also there managing the load balancing so confusion will came
@Javatechie
@Javatechie 6 жыл бұрын
Hi pratap ,Thanks for your suggestion going forward I will follow it ...
@jitendrasingh-ds6pi
@jitendrasingh-ds6pi 4 жыл бұрын
Hi getting exception when I am hitting the url like java.lang.IllegalArgumentException: Not enough variable values available to expand 'insurence.provider.url' please hlep me ASAP
@Javatechie
@Javatechie 4 жыл бұрын
Please check the key , it is case sensitive
@venugopalreddy9874
@venugopalreddy9874 4 жыл бұрын
@@Javatechie i was also getting same error
@shaikshasayyad131
@shaikshasayyad131 5 жыл бұрын
Must the file name in the git repository be application.properties? are other names acceptable?
@Javatechie
@Javatechie 5 жыл бұрын
Yes you can take it any name .but it's recommend to use application.properties
@shaikshasayyad131
@shaikshasayyad131 5 жыл бұрын
Thank you for your quick response
@HKKATTI
@HKKATTI 4 жыл бұрын
Even if we add @refreshScope annotation ,we need to hit post with /actuator/refresh then only will take the changes from,is it's right na sir, please reply this
@Javatechie
@Javatechie 4 жыл бұрын
Yes exactly .you are correct
@codeWithMeEasy
@codeWithMeEasy Жыл бұрын
Hi sir I have one query could you please clarify me. What is cup service and why using cup service and how it bind with react application.
@Jerry-cc5nw
@Jerry-cc5nw 3 жыл бұрын
Awesome example. Ek doubt tha. In client you just declare String url with @Value(${insurance.provide.url}), ab this is read from config server. But how does it know that for "/getPlan" URI i have to hit this URL that i get from config server. What happens when you write a new URI in client same Controller class. Say "/secondApi", what happens in that case ?
@Javatechie
@Javatechie 3 жыл бұрын
No if you observe in yml file we are giving the link of git that's how it search application.yml and properties and map that value to property place holder
@Jerry-cc5nw
@Jerry-cc5nw 3 жыл бұрын
@@Javatechie Thanks
@imvagrawal
@imvagrawal 4 жыл бұрын
Nice explaination. I have one question. Could you please help to elaborate the differences between Netflix Eureka and Spring Cloud Config? This would help us understand the which should be used when?
@Javatechie
@Javatechie 4 жыл бұрын
Vivek very simple Both are having different purposes Spring cloud eureka is used to register your microservice where spring cloud config used to centralize common configuration accross all the microservice
@pratappadhy2005
@pratappadhy2005 Жыл бұрын
Eureka is service discovery and Spring Cloud Config globally managing the configuration for multiple micro service with externalization, consistency and real time.
@bkit5
@bkit5 Жыл бұрын
@@Javatechie Ok so can you put eureka configuration code in config server instead of inside the microservice instance? Suppose there is like 11 instances for a microservice and we changed the gateway server ip address, then we would have to make changes in each of those instances. So can Euraka pick up the gateway server's ip address from the configuration server via github repository?
@likithapasupulety5126
@likithapasupulety5126 4 жыл бұрын
I have got an illegal argument exception for value placeholder wat to do?
@Javatechie
@Javatechie 4 жыл бұрын
Please share complete error stack
@rishikesharora8681
@rishikesharora8681 4 жыл бұрын
@@Javatechie HI, I am also getting the same exception while using the placeholder....below is the stackTrace Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled. 2021-01-16 20:26:49.480 ERROR 14880 --- [ restartedMain] o.s.boot.SpringApplication : Application run failed org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'insuranceClientApplication': Injection of autowired dependencies failed; nested exception is java.lang.IllegalArgumentException: Could not resolve placeholder 'insurance.provider.url' in value "${insurance.provider.url}" at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:405) ~[spring-beans-5.3.3.jar:5.3.3] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1415) ~[spring-beans-5.3.3.jar:5.3.3] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:608) ~[spring-beans-5.3.3.jar:5.3.3] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:531) ~[spring-beans-5.3.3.jar:5.3.3] at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) ~[spring-beans-5.3.3.jar:5.3.3] at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.3.jar:5.3.3] at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) ~[spring-beans-5.3.3.jar:5.3.3] at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) ~[spring-beans-5.3.3.jar:5.3.3] at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:944) ~[spring-beans-5.3.3.jar:5.3.3] at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:923) ~[spring-context-5.3.3.jar:5.3.3] at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:588) ~[spring-context-5.3.3.jar:5.3.3] at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:144) ~[spring-boot-2.4.2.jar:2.4.2] at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:767) ~[spring-boot-2.4.2.jar:2.4.2] at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:759) ~[spring-boot-2.4.2.jar:2.4.2] at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:426) ~[spring-boot-2.4.2.jar:2.4.2] at org.springframework.boot.SpringApplication.run(SpringApplication.java:326) ~[spring-boot-2.4.2.jar:2.4.2] at org.springframework.boot.SpringApplication.run(SpringApplication.java:1311) ~[spring-boot-2.4.2.jar:2.4.2] at org.springframework.boot.SpringApplication.run(SpringApplication.java:1300) ~[spring-boot-2.4.2.jar:2.4.2] at com.dheeresh.insuranceclient.InsuranceClientApplication.main(InsuranceClientApplication.java:25) ~[classes/:na] at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na] at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64) ~[na:na] at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na] at java.base/java.lang.reflect.Method.invoke(Method.java:564) ~[na:na] at org.springframework.boot.devtools.restart.RestartLauncher.run(RestartLauncher.java:49) ~[spring-boot-devtools-2.4.2.jar:2.4.2] Caused by: java.lang.IllegalArgumentException: Could not resolve placeholder 'insurance.provider.url' in value "${insurance.provider.url}" at org.springframework.util.PropertyPlaceholderHelper.parseStringValue(PropertyPlaceholderHelper.java:178) ~[spring-core-5.3.3.jar:5.3.3] at org.springframework.util.PropertyPlaceholderHelper.replacePlaceholders(PropertyPlaceholderHelper.java:124) ~[spring-core-5.3.3.jar:5.3.3] at org.springframework.core.env.AbstractPropertyResolver.doResolvePlaceholders(AbstractPropertyResolver.java:239) ~[spring-core-5.3.3.jar:5.3.3] at org.springframework.core.env.AbstractPropertyResolver.resolveRequiredPlaceholders(AbstractPropertyResolver.java:210) ~[spring-core-5.3.3.jar:5.3.3] at org.springframework.context.support.PropertySourcesPlaceholderConfigurer.lambda$processProperties$0(PropertySourcesPlaceholderConfigurer.java:175) ~[spring-context-5.3.3.jar:5.3.3] at org.springframework.beans.factory.support.AbstractBeanFactory.resolveEmbeddedValue(AbstractBeanFactory.java:936) ~[spring-beans-5.3.3.jar:5.3.3] at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1321) ~[spring-beans-5.3.3.jar:5.3.3] at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1300) ~[spring-beans-5.3.3.jar:5.3.3] at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:640) ~[spring-beans-5.3.3.jar:5.3.3] at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) ~[spring-beans-5.3.3.jar:5.3.3] at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:399) ~[spring-beans-5.3.3.jar:5.3.3] ... 23 common frames omitted
@Javatechie
@Javatechie 4 жыл бұрын
In @Value annotation try to add default value and then check whether it is fetching value or not
@rishikesharora8681
@rishikesharora8681 4 жыл бұрын
@@Javatechie Yes, it is fetching the default value, but in that case, i would not be able to test the @refreshscope....M i correct sir?
@Javatechie
@Javatechie 4 жыл бұрын
Yes you can't with default value
@nagarajumuddey465
@nagarajumuddey465 2 жыл бұрын
nice
@sanjaykatheth3128
@sanjaykatheth3128 3 жыл бұрын
when i run insurance-client i got this error please solve if is possible?? No spring.config.import property has been defined Action: Add a spring.config.import=configserver: property to your configuration. If configuration is not required add spring.config.import=optional:configserver: instead. To disable this check, set spring.cloud.config.enabled=false or spring.cloud.config.import-check.enabled=false.
@laxmisharma8825
@laxmisharma8825 4 жыл бұрын
Awesome
@sachinhr2217
@sachinhr2217 5 жыл бұрын
RefreshScope is not working. Everytime i do a change in provider i need to restart client application.Otherwise its giving 404 not found
@Javatechie
@Javatechie 5 жыл бұрын
Could you please try cloud consul centralize configuration approach , Even I faced same issue many times
@rit___pa__
@rit___pa__ 4 жыл бұрын
Same problem I am facing...
@Javatechie
@Javatechie 4 жыл бұрын
Am not sure , can you please check out my microservice tutorial where I implement cloud config server it is working as expected same I shown in video.
@mukeshdalavai7624
@mukeshdalavai7624 4 жыл бұрын
Once you commit in GIT, Your Config-Server will start providing the updated properties... @RefreshScope will make the variables as refreshable but unless you CALL THE ACTUATOR/REFRESH end-point they won't update in run-time. If you want that to happen try implementing ApplicationListeners in your @Configuration files.
@dattasaimogudampalli
@dattasaimogudampalli 2 жыл бұрын
We are having multiple instances of same client app with same port how can we implement this.
@Javatechie
@Javatechie 2 жыл бұрын
With same port we can't run multiple instances
@dattasaimogudampalli
@dattasaimogudampalli 2 жыл бұрын
@@Javatechie we can run in kubernetes right as they run in a container.In that case how can we manage because if we hit refresh it reach only one pod as service object of kubernetes load balances the request.
@sagarmalle9840
@sagarmalle9840 5 жыл бұрын
do vides more microservices
@DJSS855
@DJSS855 5 жыл бұрын
Nice bro
@techiesam5881
@techiesam5881 Жыл бұрын
Can we do the same for gitlab
@azadsingh2143
@azadsingh2143 2 жыл бұрын
How without giving the username and password of Github account, the springboot application is able to communicate to application.properties which is inside Github?
@shubhamchoudhari8090
@shubhamchoudhari8090 Жыл бұрын
because he made github access public, if u make it private than u have to add username and pwd in application.properties file
@azadsingh2143
@azadsingh2143 Жыл бұрын
@@shubhamchoudhari8090 thanks buddy 👍👍
@TheRagreis
@TheRagreis 2 ай бұрын
​@@shubhamchoudhari8090not so simple
@watsnewful
@watsnewful 4 жыл бұрын
propertySources is coming empty for me. please help
@Javatechie
@Javatechie 4 жыл бұрын
Can you add log Statement and check
@watsnewful
@watsnewful 4 жыл бұрын
@@Javatechie Hi I fixed it. Cloud version and Springboot Version weren't compatible
@venkatramanab7387
@venkatramanab7387 6 ай бұрын
am using spring 3.x,it is not working
@jayashrim4329
@jayashrim4329 3 жыл бұрын
My actuator/default always show 404. If I check with health it is showing down. please help with this sir
@Javatechie
@Javatechie 3 жыл бұрын
Can you please check is any service is down ? Also verify did you enable all endpoints in your application.properties or application.ymk
@jayashrim4329
@jayashrim4329 3 жыл бұрын
@@Javatechie I am only running this service.in the sts its showing application started. But when I check the actuator/default it is showing 404 and health is down. in application.properties i have include all the endpoints(*)
@Javatechie
@Javatechie 3 жыл бұрын
Please checkout my microservice playlist config server example , I used latest spring boot version Please follow the same , I believe it's issue with spring version
@sunilroshan8375
@sunilroshan8375 3 жыл бұрын
@@jayashrim4329 facing the same issue
@jayashrim4329
@jayashrim4329 3 жыл бұрын
@@sunilroshan8375 please check your branch in github. and try add your branch name in application.yml , It work for me. Please try it also
@chaitanyamhatre1670
@chaitanyamhatre1670 3 жыл бұрын
Can we do it in one application?
@bikashsethy1968
@bikashsethy1968 3 жыл бұрын
Sir when i change the url it need client app restart otherwise it is not woking
@Javatechie
@Javatechie 3 жыл бұрын
Did you annotated @RefreshScope
@bikashsethy1968
@bikashsethy1968 3 жыл бұрын
@@Javatechie yes sir @ResfeshScope over the class and also @Lazy on top of RestTemplate
@TheRagreis
@TheRagreis 2 ай бұрын
Please, explain how to use a Private GitHub Repository. No client wants a Public Repository with Configurations. Even if they are encrypted. Please, help us with the Certificates recommended solution.
@PradeepKumar-sx6ms
@PradeepKumar-sx6ms 2 жыл бұрын
It works everything but last part automatically picking as soon as commit to repo is not working sir I added refresh scope in my controller why sir
@DJSS855
@DJSS855 5 жыл бұрын
Could you please confirm whether Enviroment variable will work at Config server application.properties or not?
@Javatechie
@Javatechie 5 жыл бұрын
Didn't get your question could you please repeat it with clarity
@DJSS855
@DJSS855 5 жыл бұрын
If we are using spring cloud config then spring will read properties from git right? 1. Here my question is whether we will get same git repository Properties file data in Enviroment variable or we will get our project application.properties data in Enviroment variable.? Or both? 2 .In your application you have used @value annotation, if we will use Enviroment it will work or not?
@Javatechie
@Javatechie 5 жыл бұрын
It should be in your application.properties
@Javatechie
@Javatechie 4 жыл бұрын
Why you need Environment.getProperties() spring is smart enough to load it from your application.yml file or properties file . Please tag your issue 🙏
@prasaddhanikonda2415
@prasaddhanikonda2415 4 жыл бұрын
@Value("${insurance.provider.url}") private String url; I have got a confusion. How could we get the value in client Project which is available at config Server Project.
@Javatechie
@Javatechie 4 жыл бұрын
Didn't get you client project means you are talking about any UI client?
@prasaddhanikonda2415
@prasaddhanikonda2415 4 жыл бұрын
@@Javatechie insurance-client project getting the url using (@Value("${insurance.provider.url}") private String url; ) . How it got the url value. How this value made available to insurance client. This value would be available to insurance-config-server project only since git was configured in that project.
@kirankumarmandarapu9609
@kirankumarmandarapu9609 10 ай бұрын
Sir, I wants to clone remote repository into local using spring cloud config server. Please let me know the solution
@venkychannel2798
@venkychannel2798 3 жыл бұрын
Guys if anyone working in 2.4 version please add below setup in the config client application application.properties file. spring.config.Import=optional:configserver:localhost:9898(give your config server port) Management.endpoints.web.exposure.include=*
@Ravikumar-gj6qw
@Ravikumar-gj6qw 3 жыл бұрын
not hit insurance provider to insurance service
@md.ashrafulkarimrokon7540
@md.ashrafulkarimrokon7540 4 жыл бұрын
Simple great.
@pradeepvirtuele7160
@pradeepvirtuele7160 2 жыл бұрын
Hi sir I have worked on this feature I am not getting updated value from properties until unless I refresh actuator but you are not doing any actuator refresh some stackoverflow answers also suggest to do actuator refresh Please have a look once and please let me know the reason.github.com/PradeepKumarHE/spring-cloufd-config-profjects
@Javatechie
@Javatechie 2 жыл бұрын
No it won't auto refresh in latest version for that you need to use cloud bus
Client side Load Balancer using Spring Cloud Ribbon | Spring Boot
25:02
Microservices Security Using JWT | Spring Cloud  Gateway | JavaTechie
1:25:32
СИНИЙ ИНЕЙ УЖЕ ВЫШЕЛ!❄️
01:01
DO$HIK
Рет қаралды 3,3 МЛН
To Brawl AND BEYOND!
00:51
Brawl Stars
Рет қаралды 17 МЛН
Microservices using SpringBoot 3.0 | Full Example [NEW]
1:25:38
Daily Code Buffer
Рет қаралды 204 М.
Service Discovery and Microservices Tutorial
33:12
Amigoscode
Рет қаралды 88 М.
CI CD Pipeline with Spring Boot and AWS
1:09:05
Get Arrays
Рет қаралды 10 М.