Isn't the spring cloud config client password re-authenticated every time you visit?

spring cloud config contact security protection mechanism, server and client set passwords respectively

  • 1 authenticated user and password are set on the server
spring:
  application:
    name: space
  cloud:
    config:
      profile: dev
      label: master
      uri: http://localhost:7001/
      username: user
      password: 87bcaffc-7b2d-4569-b77e-3df9990a066f
  • 3 start the server and client programs respectively, and the client can correctly access the configuration information of the server
  • 4 change the password of the service disconnection to other passwords, and restart the server. At this time, the client can still access the server normally. Is this mechanism correct? Don"t you need the client to force the password change?
Mar.01,2021
Menu