VinncentWong / observer-actuator

Code for Observing with Spring Boot Actuator
0 stars 0 forks source link

Sorry to distrub #1

Closed UmashankarPalanichamy closed 2 months ago

UmashankarPalanichamy commented 2 months ago

I read you medium blog about config server. having some doubts if possible can we discuss about it.

VinncentWong commented 2 months ago

Hi @UmashankarPalanichamy, could you elaborate more about the problem?

UmashankarPalanichamy commented 2 months ago

Thanks for the replay @VinncentWong My problem is i having a microservice setup i add config server in it. i am able to pass vaules form vault to config sever. but not able to pass vaules i got from vault to other micorservices.

VinncentWong commented 2 months ago

Do you use Spring Cloud Config Client to fetch the configuration? @UmashankarPalanichamy If yes, please share the configuration too

UmashankarPalanichamy commented 2 months ago

if possible can we meet in zoom or google meet?

UmashankarPalanichamy commented 2 months ago

my config server image

VinncentWong commented 2 months ago

I'm sorry but right now I'm unavailable since I am still have holiday party here 😢 , let me check first the configuration, if then it still unsolved then we will try through meet @UmashankarPalanichamy

VinncentWong commented 2 months ago

The configuration looks okay, on your other microservice that is fetching the configuration from Spring Cloud Config Server, have you added this config on bootstrap.yaml? @UmashankarPalanichamy

spring:
  cloud:
    config:
      uri: http://localhost:8000
 Please adjust the URI based on your microservice port
UmashankarPalanichamy commented 2 months ago

The configuration looks okay, on your other microservice that is fetching the configuration from Spring Cloud Config Server, have you added this config on bootstrap.yaml? @UmashankarPalanichamy

spring:
  cloud:
    config:
      uri: http://localhost:8000

image

UmashankarPalanichamy commented 2 months ago

added already

VinncentWong commented 2 months ago

Looks weird? Please check your pom.xml, have you add this dependency below? @UmashankarPalanichamy

<!--This one for client-->
    <dependency>
      <groupId>org.springframework.cloud</groupId>
      <artifactId>spring-cloud-starter-config</artifactId>
    </dependency>

  <!--This one for server only but this one not needed on your microservice case-->
  <dependency>
      <groupId>org.springframework.cloud</groupId>
      <artifactId>spring-cloud-config-server</artifactId>
    </dependency>
VinncentWong commented 2 months ago

Wait, what is the filename of your properties/yaml? application or bootstrap?

UmashankarPalanichamy commented 2 months ago

it is bootstrap for both config and other microservices

UmashankarPalanichamy commented 2 months ago
org.springframework.cloud spring-cloud-starter-config

these are correct

UmashankarPalanichamy commented 2 months ago

i am able to pass vaules from config-sever if i set the profiles as local, native and it is taking from these folder. but not working only from vault image

VinncentWong commented 2 months ago

Can you send me all logs from one of your microservice that is fetching from Vault when starting your apps? @UmashankarPalanichamy

VinncentWong commented 2 months ago

image Now I get it, it seems the configuration is wrong It should be

spring:
  application:
    # up to you, you can change your application name
    name: spring-cloud-config
  profiles:
    # you need to enable active Profile Vault to make Spring easily
    # connect to Vault
    active: vault
  cloud:
    config:
      server:
        vault:
          # tell the connection host
          host: localhost
          # tell the connection port
          port: 8200
          # tell the scheme, it could be http/https
          scheme: http
          # it is recommended to use kvVersion of 2
          kvVersion: 2
          # the backend name
          backend: spring
UmashankarPalanichamy commented 2 months ago

getting this error

C:\Users\Shan\.jdks\corretto-11.0.23\bin\java.exe -XX:TieredStopAtLevel=1 -noverify -Dspring.output.ansi.enabled=always -Dcom.sun.management.jmxremote -Dspring.jmx.enabled=true -Dspring.liveBeansView.mbeanDomain -Dspring.application.admin.enabled=true "-Dmanagement.endpoints.jmx.exposure.include=*" "-javaagent:C:\Program Files\JetBrains\IntelliJ IDEA 2024.1.1\lib\idea_rt.jar=54703:C:\Program Files\JetBrains\IntelliJ IDEA 2024.1.1\bin" -Dfile.encoding=UTF-8 @C:\Users\Shan\AppData\Local\Temp\idea_arg_file1017061088 com.p3solutions.ArchonConfigServerApplication
2024-07-04 17:10:26.905  INFO 9032 --- [           main] o.s.s.c.ThreadPoolTaskScheduler          : Initializing ExecutorService

  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::        (v2.2.2.RELEASE)

2024-07-04 17:10:27.550  INFO 9032 --- [           main] o.s.v.c.e.LeaseAwareVaultPropertySource  : Vault location [secret/application/vault] not resolvable: Not found
2024-07-04 17:10:27.558  INFO 9032 --- [           main] b.c.PropertySourceBootstrapConfiguration : Located property source: [BootstrapPropertySource {name='bootstrapProperties-secret/application/vault'}, BootstrapPropertySource {name='bootstrapProperties-secret/application'}]
2024-07-04 17:10:27.563  INFO 9032 --- [           main] c.p.ArchonConfigServerApplication        : The following profiles are active: vault
2024-07-04 17:10:28.237  WARN 9032 --- [           main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.support.BeanDefinitionOverrideException: Invalid bean definition with name 'configTokenProvider' defined in class path resource [org/springframework/cloud/config/server/config/VaultConfiguration.class]: Cannot register bean definition [Root bean: class [null]; scope=; abstract=false; lazyInit=null; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.cloud.config.server.config.VaultConfiguration; factoryMethodName=configTokenProvider; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/cloud/config/server/config/VaultConfiguration.class]] for bean 'configTokenProvider': There is already [Root bean: class [null]; scope=; abstract=false; lazyInit=null; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.cloud.config.server.config.EnvironmentRepositoryConfiguration$DefaultConfigTokenProvider; factoryMethodName=configTokenProvider; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/cloud/config/server/config/EnvironmentRepositoryConfiguration$DefaultConfigTokenProvider.class]] bound.
2024-07-04 17:10:28.253  INFO 9032 --- [           main] ConditionEvaluationReportLoggingListener : 

Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2024-07-04 17:10:28.255  INFO 9032 --- [           main] o.s.s.c.ThreadPoolTaskScheduler          : Shutting down ExecutorService
2024-07-04 17:10:28.258 ERROR 9032 --- [           main] o.s.b.d.LoggingFailureAnalysisReporter   : 

***************************
APPLICATION FAILED TO START
***************************

Description:

The bean 'configTokenProvider', defined in class path resource [org/springframework/cloud/config/server/config/VaultConfiguration.class], could not be registered. A bean with that name has already been defined in class path resource [org/springframework/cloud/config/server/config/EnvironmentRepositoryConfiguration$DefaultConfigTokenProvider.class] and overriding is disabled.

Action:

Consider renaming one of the beans or enabling overriding by setting spring.main.allow-bean-definition-overriding=true

Process finished with exit code 1
VinncentWong commented 2 months ago

2024-07-04 17:10:27.550 INFO 9032 --- [ main] o.s.v.c.e.LeaseAwareVaultPropertySource : Vault location [secret/application/vault] not resolvable: Not found

The Vault configuration is wrong I think?

UmashankarPalanichamy commented 2 months ago
spring:
  profiles:
    active: vault
  cloud:
    vault:
      token: hvs.sGlm5pNn4116RgvdXmjIXXHL
      host: 127.0.0.1
      port: 8200
      scheme: http
      uri: http://127.0.0.1:8200
      authentication: TOKEN
      connection-timeout: 5000
      read-timeout: 15000
      kv:
        enabled: true
        backend-version: 2
    config:
      allowOverride: true
      overrideNone: true
      overrideSystemProperties: true
      server:
        vault:
          host: ${ETL_VAULT_IP:127.0.0.1}
          port: ${ETL_VAULT_PORT:8200}
          scheme: http
          authentication: TOKEN
          token: ${ETL_VAULT_TOKEN:hvs.sGlm5pNn4116RgvdXmjIXXHL}
          backend: secret
          kv-version: 2
UmashankarPalanichamy commented 2 months ago

resolved by adding main: allow-bean-definition-overriding: true

UmashankarPalanichamy commented 2 months ago

but still microservice not getting any value.

VinncentWong commented 2 months ago

Could you share to me the latest logs from the microservice?

UmashankarPalanichamy commented 2 months ago
C:\Users\Shan\.jdks\corretto-11.0.23\bin\java.exe -XX:TieredStopAtLevel=1 -noverify -Dspring.output.ansi.enabled=always -Dcom.sun.management.jmxremote -Dspring.jmx.enabled=true -Dspring.liveBeansView.mbeanDomain -Dspring.application.admin.enabled=true "-Dmanagement.endpoints.jmx.exposure.include=*" "-javaagent:C:\Program Files\JetBrains\IntelliJ IDEA 2024.1.1\lib\idea_rt.jar=54820:C:\Program Files\JetBrains\IntelliJ IDEA 2024.1.1\bin" -Dfile.encoding=UTF-8 @C:\Users\Shan\AppData\Local\Temp\idea_arg_file1893214878 com.p3solutions.ArchonConfigServerApplication
2024-07-04 17:15:10.329  INFO 20636 --- [           main] o.s.s.c.ThreadPoolTaskScheduler          : Initializing ExecutorService

  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::        (v2.2.2.RELEASE)

2024-07-04 17:15:10.965  INFO 20636 --- [           main] o.s.v.c.e.LeaseAwareVaultPropertySource  : Vault location [secret/application/vault] not resolvable: Not found
2024-07-04 17:15:11.000  INFO 20636 --- [           main] b.c.PropertySourceBootstrapConfiguration : Located property source: [BootstrapPropertySource {name='bootstrapProperties-secret/application/vault'}, BootstrapPropertySource {name='bootstrapProperties-secret/application'}]
2024-07-04 17:15:11.005  INFO 20636 --- [           main] c.p.ArchonConfigServerApplication        : The following profiles are active: vault
2024-07-04 17:15:11.714  INFO 20636 --- [           main] o.s.cloud.context.scope.GenericScope     : BeanFactory id=800fdb23-d8dd-3a1b-b714-780013e62ef3
2024-07-04 17:15:11.990  INFO 20636 --- [           main] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat initialized with port(s): 9999 (http)
2024-07-04 17:15:12.002  INFO 20636 --- [           main] o.apache.catalina.core.StandardService   : Starting service [Tomcat]
2024-07-04 17:15:12.002  INFO 20636 --- [           main] org.apache.catalina.core.StandardEngine  : Starting Servlet engine: [Apache Tomcat/9.0.29]
2024-07-04 17:15:12.127  INFO 20636 --- [           main] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring embedded WebApplicationContext
2024-07-04 17:15:12.127  INFO 20636 --- [           main] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 1109 ms
ENVS : www
ENVS : 9999
2024-07-04 17:15:12.512  INFO 20636 --- [           main] o.s.s.concurrent.ThreadPoolTaskExecutor  : Initializing ExecutorService 'applicationTaskExecutor'
2024-07-04 17:15:13.318  INFO 20636 --- [           main] o.s.b.a.e.web.EndpointLinksResolver      : Exposing 2 endpoint(s) beneath base path '/actuator'
2024-07-04 17:15:13.414  INFO 20636 --- [           main] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat started on port(s): 9999 (http) with context path ''
2024-07-04 17:15:13.720  INFO 20636 --- [           main] c.p.ArchonConfigServerApplication        : Started ArchonConfigServerApplication in 4.762 seconds (JVM running for 5.66)
2024-07-04 17:15:14.531  INFO 20636 --- [2)-192.168.1.40] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-07-04 17:15:14.531  INFO 20636 --- [2)-192.168.1.40] o.s.web.servlet.DispatcherServlet        : Initializing Servlet 'dispatcherServlet'
2024-07-04 17:15:14.538  INFO 20636 --- [2)-192.168.1.40] o.s.web.servlet.DispatcherServlet        : Completed initialization in 7 ms
UmashankarPalanichamy commented 2 months ago
C:\Users\Shan\.jdks\corretto-11.0.23\bin\java.exe -XX:TieredStopAtLevel=1 -noverify -Dspring.output.ansi.enabled=always -Dcom.sun.management.jmxremote -Dspring.jmx.enabled=true -Dspring.liveBeansView.mbeanDomain -Dspring.application.admin.enabled=true "-Dmanagement.endpoints.jmx.exposure.include=*" "-javaagent:C:\Program Files\JetBrains\IntelliJ IDEA 2024.1.1\lib\idea_rt.jar=54839:C:\Program Files\JetBrains\IntelliJ IDEA 2024.1.1\bin" -Dfile.encoding=UTF-8 -classpath C:\Users\Shan\IdeaProjects\AETL_BE\archon-gateway-service\target\classes;C:\Users\Shan\.m2\repository\org\springframework\cloud\spring-cloud-starter-gateway\2.2.1.RELEASE\spring-cloud-starter-gateway-2.2.1.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\cloud\spring-cloud-starter\2.2.1.RELEASE\spring-cloud-starter-2.2.1.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\security\spring-security-rsa\1.0.9.RELEASE\spring-security-rsa-1.0.9.RELEASE.jar;C:\Users\Shan\.m2\repository\org\bouncycastle\bcpkix-jdk15on\1.64\bcpkix-jdk15on-1.64.jar;C:\Users\Shan\.m2\repository\org\bouncycastle\bcprov-jdk15on\1.64\bcprov-jdk15on-1.64.jar;C:\Users\Shan\.m2\repository\org\springframework\cloud\spring-cloud-gateway-core\2.2.1.RELEASE\spring-cloud-gateway-core-2.2.1.RELEASE.jar;C:\Users\Shan\.m2\repository\io\projectreactor\addons\reactor-extra\3.3.1.RELEASE\reactor-extra-3.3.1.RELEASE.jar;C:\Users\Shan\.m2\repository\io\projectreactor\reactor-core\3.3.1.RELEASE\reactor-core-3.3.1.RELEASE.jar;C:\Users\Shan\.m2\repository\org\reactivestreams\reactive-streams\1.0.3\reactive-streams-1.0.3.jar;C:\Users\Shan\.m2\repository\org\springframework\boot\spring-boot-starter-webflux\2.2.2.RELEASE\spring-boot-starter-webflux-2.2.2.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\boot\spring-boot-starter-json\2.2.2.RELEASE\spring-boot-starter-json-2.2.2.RELEASE.jar;C:\Users\Shan\.m2\repository\com\fasterxml\jackson\datatype\jackson-datatype-jdk8\2.10.1\jackson-datatype-jdk8-2.10.1.jar;C:\Users\Shan\.m2\repository\com\fasterxml\jackson\datatype\jackson-datatype-jsr310\2.10.1\jackson-datatype-jsr310-2.10.1.jar;C:\Users\Shan\.m2\repository\com\fasterxml\jackson\module\jackson-module-parameter-names\2.10.1\jackson-module-parameter-names-2.10.1.jar;C:\Users\Shan\.m2\repository\org\springframework\boot\spring-boot-starter-reactor-netty\2.2.2.RELEASE\spring-boot-starter-reactor-netty-2.2.2.RELEASE.jar;C:\Users\Shan\.m2\repository\io\projectreactor\netty\reactor-netty\0.9.2.RELEASE\reactor-netty-0.9.2.RELEASE.jar;C:\Users\Shan\.m2\repository\io\netty\netty-codec-http\4.1.43.Final\netty-codec-http-4.1.43.Final.jar;C:\Users\Shan\.m2\repository\io\netty\netty-common\4.1.43.Final\netty-common-4.1.43.Final.jar;C:\Users\Shan\.m2\repository\io\netty\netty-buffer\4.1.43.Final\netty-buffer-4.1.43.Final.jar;C:\Users\Shan\.m2\repository\io\netty\netty-transport\4.1.43.Final\netty-transport-4.1.43.Final.jar;C:\Users\Shan\.m2\repository\io\netty\netty-resolver\4.1.43.Final\netty-resolver-4.1.43.Final.jar;C:\Users\Shan\.m2\repository\io\netty\netty-codec\4.1.43.Final\netty-codec-4.1.43.Final.jar;C:\Users\Shan\.m2\repository\io\netty\netty-codec-http2\4.1.43.Final\netty-codec-http2-4.1.43.Final.jar;C:\Users\Shan\.m2\repository\io\netty\netty-handler\4.1.43.Final\netty-handler-4.1.43.Final.jar;C:\Users\Shan\.m2\repository\io\netty\netty-handler-proxy\4.1.43.Final\netty-handler-proxy-4.1.43.Final.jar;C:\Users\Shan\.m2\repository\io\netty\netty-codec-socks\4.1.43.Final\netty-codec-socks-4.1.43.Final.jar;C:\Users\Shan\.m2\repository\io\netty\netty-transport-native-epoll\4.1.43.Final\netty-transport-native-epoll-4.1.43.Final-linux-x86_64.jar;C:\Users\Shan\.m2\repository\io\netty\netty-transport-native-unix-common\4.1.43.Final\netty-transport-native-unix-common-4.1.43.Final.jar;C:\Users\Shan\.m2\repository\org\glassfish\jakarta.el\3.0.3\jakarta.el-3.0.3.jar;C:\Users\Shan\.m2\repository\org\springframework\boot\spring-boot-starter-validation\2.2.2.RELEASE\spring-boot-starter-validation-2.2.2.RELEASE.jar;C:\Users\Shan\.m2\repository\jakarta\validation\jakarta.validation-api\2.0.1\jakarta.validation-api-2.0.1.jar;C:\Users\Shan\.m2\repository\org\hibernate\validator\hibernate-validator\6.0.18.Final\hibernate-validator-6.0.18.Final.jar;C:\Users\Shan\.m2\repository\org\jboss\logging\jboss-logging\3.4.1.Final\jboss-logging-3.4.1.Final.jar;C:\Users\Shan\.m2\repository\com\fasterxml\classmate\1.5.1\classmate-1.5.1.jar;C:\Users\Shan\.m2\repository\org\springframework\spring-webflux\5.2.2.RELEASE\spring-webflux-5.2.2.RELEASE.jar;C:\Users\Shan\.m2\repository\org\synchronoss\cloud\nio-multipart-parser\1.1.0\nio-multipart-parser-1.1.0.jar;C:\Users\Shan\.m2\repository\org\synchronoss\cloud\nio-stream-storage\1.1.3\nio-stream-storage-1.1.3.jar;C:\Users\Shan\.m2\repository\org\springframework\cloud\spring-cloud-config-client\2.2.1.RELEASE\spring-cloud-config-client-2.2.1.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\boot\spring-boot-autoconfigure\2.2.2.RELEASE\spring-boot-autoconfigure-2.2.2.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\boot\spring-boot\2.2.2.RELEASE\spring-boot-2.2.2.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\spring-context\5.2.2.RELEASE\spring-context-5.2.2.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\spring-expression\5.2.2.RELEASE\spring-expression-5.2.2.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\cloud\spring-cloud-commons\2.2.1.RELEASE\spring-cloud-commons-2.2.1.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\security\spring-security-crypto\5.2.1.RELEASE\spring-security-crypto-5.2.1.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\cloud\spring-cloud-context\2.2.1.RELEASE\spring-cloud-context-2.2.1.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\spring-web\5.2.2.RELEASE\spring-web-5.2.2.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\spring-beans\5.2.2.RELEASE\spring-beans-5.2.2.RELEASE.jar;C:\Users\Shan\.m2\repository\com\fasterxml\jackson\core\jackson-annotations\2.10.1\jackson-annotations-2.10.1.jar;C:\Users\Shan\.m2\repository\com\fasterxml\jackson\core\jackson-databind\2.10.1\jackson-databind-2.10.1.jar;C:\Users\Shan\.m2\repository\com\fasterxml\jackson\core\jackson-core\2.10.1\jackson-core-2.10.1.jar;C:\Users\Shan\.m2\repository\org\springframework\cloud\spring-cloud-starter-netflix-eureka-client\2.2.1.RELEASE\spring-cloud-starter-netflix-eureka-client-2.2.1.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\cloud\spring-cloud-netflix-hystrix\2.2.1.RELEASE\spring-cloud-netflix-hystrix-2.2.1.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\boot\spring-boot-starter-aop\2.2.2.RELEASE\spring-boot-starter-aop-2.2.2.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\spring-aop\5.2.2.RELEASE\spring-aop-5.2.2.RELEASE.jar;C:\Users\Shan\.m2\repository\org\aspectj\aspectjweaver\1.9.5\aspectjweaver-1.9.5.jar;C:\Users\Shan\.m2\repository\org\springframework\cloud\spring-cloud-netflix-eureka-client\2.2.1.RELEASE\spring-cloud-netflix-eureka-client-2.2.1.RELEASE.jar;C:\Users\Shan\.m2\repository\com\netflix\eureka\eureka-client\1.9.13\eureka-client-1.9.13.jar;C:\Users\Shan\.m2\repository\org\codehaus\jettison\jettison\1.3.7\jettison-1.3.7.jar;C:\Users\Shan\.m2\repository\stax\stax-api\1.0.1\stax-api-1.0.1.jar;C:\Users\Shan\.m2\repository\com\netflix\netflix-commons\netflix-eventbus\0.3.0\netflix-eventbus-0.3.0.jar;C:\Users\Shan\.m2\repository\com\netflix\netflix-commons\netflix-infix\0.3.0\netflix-infix-0.3.0.jar;C:\Users\Shan\.m2\repository\commons-jxpath\commons-jxpath\1.3\commons-jxpath-1.3.jar;C:\Users\Shan\.m2\repository\joda-time\joda-time\2.10.5\joda-time-2.10.5.jar;C:\Users\Shan\.m2\repository\org\antlr\antlr-runtime\3.4\antlr-runtime-3.4.jar;C:\Users\Shan\.m2\repository\org\antlr\stringtemplate\3.2.1\stringtemplate-3.2.1.jar;C:\Users\Shan\.m2\repository\antlr\antlr\2.7.7\antlr-2.7.7.jar;C:\Users\Shan\.m2\repository\org\apache\commons\commons-math\2.2\commons-math-2.2.jar;C:\Users\Shan\.m2\repository\com\netflix\archaius\archaius-core\0.7.6\archaius-core-0.7.6.jar;C:\Users\Shan\.m2\repository\com\google\guava\guava\16.0\guava-16.0.jar;C:\Users\Shan\.m2\repository\javax\ws\rs\jsr311-api\1.1.1\jsr311-api-1.1.1.jar;C:\Users\Shan\.m2\repository\com\netflix\servo\servo-core\0.12.21\servo-core-0.12.21.jar;C:\Users\Shan\.m2\repository\com\sun\jersey\jersey-core\1.19.1\jersey-core-1.19.1.jar;C:\Users\Shan\.m2\repository\com\sun\jersey\jersey-client\1.19.1\jersey-client-1.19.1.jar;C:\Users\Shan\.m2\repository\com\sun\jersey\contribs\jersey-apache-client4\1.19.1\jersey-apache-client4-1.19.1.jar;C:\Users\Shan\.m2\repository\org\apache\httpcomponents\httpclient\4.5.10\httpclient-4.5.10.jar;C:\Users\Shan\.m2\repository\org\apache\httpcomponents\httpcore\4.4.12\httpcore-4.4.12.jar;C:\Users\Shan\.m2\repository\commons-codec\commons-codec\1.13\commons-codec-1.13.jar;C:\Users\Shan\.m2\repository\com\google\inject\guice\4.1.0\guice-4.1.0.jar;C:\Users\Shan\.m2\repository\javax\inject\javax.inject\1\javax.inject-1.jar;C:\Users\Shan\.m2\repository\aopalliance\aopalliance\1.0\aopalliance-1.0.jar;C:\Users\Shan\.m2\repository\com\netflix\eureka\eureka-core\1.9.13\eureka-core-1.9.13.jar;C:\Users\Shan\.m2\repository\com\fasterxml\woodstox\woodstox-core\5.2.1\woodstox-core-5.2.1.jar;C:\Users\Shan\.m2\repository\org\codehaus\woodstox\stax2-api\4.2\stax2-api-4.2.jar;C:\Users\Shan\.m2\repository\org\springframework\cloud\spring-cloud-starter-netflix-archaius\2.2.1.RELEASE\spring-cloud-starter-netflix-archaius-2.2.1.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\cloud\spring-cloud-netflix-ribbon\2.2.1.RELEASE\spring-cloud-netflix-ribbon-2.2.1.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\cloud\spring-cloud-netflix-archaius\2.2.1.RELEASE\spring-cloud-netflix-archaius-2.2.1.RELEASE.jar;C:\Users\Shan\.m2\repository\commons-configuration\commons-configuration\1.8\commons-configuration-1.8.jar;C:\Users\Shan\.m2\repository\org\springframework\cloud\spring-cloud-starter-netflix-ribbon\2.2.1.RELEASE\spring-cloud-starter-netflix-ribbon-2.2.1.RELEASE.jar;C:\Users\Shan\.m2\repository\com\netflix\ribbon\ribbon\2.3.0\ribbon-2.3.0.jar;C:\Users\Shan\.m2\repository\com\netflix\ribbon\ribbon-transport\2.3.0\ribbon-transport-2.3.0.jar;C:\Users\Shan\.m2\repository\io\reactivex\rxnetty-contexts\0.4.9\rxnetty-contexts-0.4.9.jar;C:\Users\Shan\.m2\repository\io\reactivex\rxnetty-servo\0.4.9\rxnetty-servo-0.4.9.jar;C:\Users\Shan\.m2\repository\com\netflix\hystrix\hystrix-core\1.5.18\hystrix-core-1.5.18.jar;C:\Users\Shan\.m2\repository\org\hdrhistogram\HdrHistogram\2.1.9\HdrHistogram-2.1.9.jar;C:\Users\Shan\.m2\repository\io\reactivex\rxnetty\0.4.9\rxnetty-0.4.9.jar;C:\Users\Shan\.m2\repository\com\netflix\ribbon\ribbon-core\2.3.0\ribbon-core-2.3.0.jar;C:\Users\Shan\.m2\repository\com\netflix\ribbon\ribbon-httpclient\2.3.0\ribbon-httpclient-2.3.0.jar;C:\Users\Shan\.m2\repository\commons-collections\commons-collections\3.2.2\commons-collections-3.2.2.jar;C:\Users\Shan\.m2\repository\com\netflix\netflix-commons\netflix-commons-util\0.3.0\netflix-commons-util-0.3.0.jar;C:\Users\Shan\.m2\repository\com\netflix\ribbon\ribbon-loadbalancer\2.3.0\ribbon-loadbalancer-2.3.0.jar;C:\Users\Shan\.m2\repository\com\netflix\netflix-commons\netflix-statistics\0.1.1\netflix-statistics-0.1.1.jar;C:\Users\Shan\.m2\repository\io\reactivex\rxjava\1.3.8\rxjava-1.3.8.jar;C:\Users\Shan\.m2\repository\org\springframework\cloud\spring-cloud-starter-loadbalancer\2.2.1.RELEASE\spring-cloud-starter-loadbalancer-2.2.1.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\cloud\spring-cloud-loadbalancer\2.2.1.RELEASE\spring-cloud-loadbalancer-2.2.1.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\boot\spring-boot-starter-cache\2.2.2.RELEASE\spring-boot-starter-cache-2.2.2.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\spring-context-support\5.2.2.RELEASE\spring-context-support-5.2.2.RELEASE.jar;C:\Users\Shan\.m2\repository\com\stoyanr\evictor\1.0.0\evictor-1.0.0.jar;C:\Users\Shan\.m2\repository\com\netflix\ribbon\ribbon-eureka\2.3.0\ribbon-eureka-2.3.0.jar;C:\Users\Shan\.m2\repository\com\thoughtworks\xstream\xstream\1.4.11.1\xstream-1.4.11.1.jar;C:\Users\Shan\.m2\repository\xmlpull\xmlpull\1.1.3.1\xmlpull-1.1.3.1.jar;C:\Users\Shan\.m2\repository\xpp3\xpp3_min\1.1.4c\xpp3_min-1.1.4c.jar;C:\Users\Shan\.m2\repository\org\springframework\cloud\spring-cloud-starter-config\2.2.1.RELEASE\spring-cloud-starter-config-2.2.1.RELEASE.jar;C:\Users\Shan\.m2\repository\com\github\ulisesbocchio\jasypt-spring-boot-starter\3.0.2\jasypt-spring-boot-starter-3.0.2.jar;C:\Users\Shan\.m2\repository\com\github\ulisesbocchio\jasypt-spring-boot\3.0.2\jasypt-spring-boot-3.0.2.jar;C:\Users\Shan\.m2\repository\org\jasypt\jasypt\1.9.3\jasypt-1.9.3.jar;C:\Users\Shan\.m2\repository\org\springframework\boot\spring-boot-starter\2.2.2.RELEASE\spring-boot-starter-2.2.2.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\boot\spring-boot-starter-logging\2.2.2.RELEASE\spring-boot-starter-logging-2.2.2.RELEASE.jar;C:\Users\Shan\.m2\repository\ch\qos\logback\logback-classic\1.2.3\logback-classic-1.2.3.jar;C:\Users\Shan\.m2\repository\ch\qos\logback\logback-core\1.2.3\logback-core-1.2.3.jar;C:\Users\Shan\.m2\repository\org\slf4j\jul-to-slf4j\1.7.29\jul-to-slf4j-1.7.29.jar;C:\Users\Shan\.m2\repository\jakarta\annotation\jakarta.annotation-api\1.3.5\jakarta.annotation-api-1.3.5.jar;C:\Users\Shan\.m2\repository\org\yaml\snakeyaml\1.25\snakeyaml-1.25.jar;C:\Users\Shan\.m2\repository\org\springframework\spring-core\5.2.2.RELEASE\spring-core-5.2.2.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\spring-jcl\5.2.2.RELEASE\spring-jcl-5.2.2.RELEASE.jar;C:\Users\Shan\.m2\repository\org\sonarsource\scanner\maven\sonar-maven-plugin\3.5.0.1254\sonar-maven-plugin-3.5.0.1254.jar;C:\Users\Shan\.m2\repository\org\sonatype\plexus\plexus-sec-dispatcher\1.4\plexus-sec-dispatcher-1.4.jar;C:\Users\Shan\.m2\repository\org\sonatype\plexus\plexus-cipher\1.4\plexus-cipher-1.4.jar;C:\Users\Shan\.m2\repository\org\codehaus\plexus\plexus-utils\3.0.22\plexus-utils-3.0.22.jar;C:\Users\Shan\.m2\repository\org\sonarsource\scanner\api\sonar-scanner-api\2.10.0.1189\sonar-scanner-api-2.10.0.1189.jar;C:\Users\Shan\.m2\repository\commons-lang\commons-lang\2.6\commons-lang-2.6.jar;C:\Users\Shan\.m2\repository\org\codehaus\janino\janino\3.0.6\janino-3.0.6.jar;C:\Users\Shan\.m2\repository\org\codehaus\janino\commons-compiler\3.1.0\commons-compiler-3.1.0.jar;C:\Users\Shan\.m2\repository\org\apache\logging\log4j\log4j-to-slf4j\2.17.1\log4j-to-slf4j-2.17.1.jar;C:\Users\Shan\.m2\repository\org\slf4j\slf4j-api\1.7.29\slf4j-api-1.7.29.jar;C:\Users\Shan\.m2\repository\org\apache\logging\log4j\log4j-core\2.17.1\log4j-core-2.17.1.jar;C:\Users\Shan\.m2\repository\org\apache\logging\log4j\log4j-api\2.17.1\log4j-api-2.17.1.jar;C:\Users\Shan\.m2\repository\com\splunk\logging\splunk-library-javalogging\1.8.0\splunk-library-javalogging-1.8.0.jar;C:\Users\Shan\.m2\repository\com\squareup\okhttp3\okhttp\3.14.4\okhttp-3.14.4.jar;C:\Users\Shan\.m2\repository\com\squareup\okio\okio\1.17.2\okio-1.17.2.jar;C:\Users\Shan\.m2\repository\com\google\code\gson\gson\2.8.6\gson-2.8.6.jar com.p3solutions.gatewayserver.GatewayServerApplication
04-07-2024 17:15:23.367 INFO  [main] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor.postProcessBeanFactory(EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48) - Post-processing PropertySource instances
04-07-2024 17:15:23.411 INFO  [main] c.u.j.EncryptablePropertySourceConverter.makeEncryptable(EncryptablePropertySourceConverter.java:44) - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
04-07-2024 17:15:23.413 INFO  [main] c.u.j.EncryptablePropertySourceConverter.makeEncryptable(EncryptablePropertySourceConverter.java:44) - Converting PropertySource gateway-properties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
04-07-2024 17:15:23.413 INFO  [main] c.u.j.EncryptablePropertySourceConverter.makeEncryptable(EncryptablePropertySourceConverter.java:44) - Converting PropertySource bootstrap [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
04-07-2024 17:15:23.413 INFO  [main] c.u.j.EncryptablePropertySourceConverter.makeEncryptable(EncryptablePropertySourceConverter.java:44) - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
04-07-2024 17:15:23.414 INFO  [main] c.u.j.EncryptablePropertySourceConverter.makeEncryptable(EncryptablePropertySourceConverter.java:44) - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
04-07-2024 17:15:23.414 INFO  [main] c.u.j.EncryptablePropertySourceConverter.makeEncryptable(EncryptablePropertySourceConverter.java:44) - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
04-07-2024 17:15:23.414 INFO  [main] c.u.j.EncryptablePropertySourceConverter.makeEncryptable(EncryptablePropertySourceConverter.java:44) - Converting PropertySource springCloudClientHostInfo [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
04-07-2024 17:15:23.415 INFO  [main] c.u.j.EncryptablePropertySourceConverter.makeEncryptable(EncryptablePropertySourceConverter.java:44) - Converting PropertySource applicationConfig: [classpath:/bootstrap.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
04-07-2024 17:15:23.442 INFO  [main] c.u.j.filter.DefaultLazyPropertyFilter.lambda$null$2(DefaultLazyPropertyFilter.java:31) - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
04-07-2024 17:15:23.531 INFO  [main] c.u.j.r.DefaultLazyPropertyResolver.lambda$null$2(DefaultLazyPropertyResolver.java:35) - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
04-07-2024 17:15:23.532 INFO  [main] c.u.j.d.DefaultLazyPropertyDetector.lambda$null$2(DefaultLazyPropertyDetector.java:35) - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector

  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::        (v2.2.2.RELEASE)

04-07-2024 17:15:24.017 INFO  [main] o.s.c.c.c.ConfigServicePropertySourceLocator.getRemoteEnvironment(ConfigServicePropertySourceLocator.java:249) - Fetching config from server at : http://localhost:9999
04-07-2024 17:15:24.260 INFO  [main] o.s.c.c.c.ConfigServicePropertySourceLocator.log(ConfigServicePropertySourceLocator.java:167) - Located environment: name=gateway-server, profiles=[default], label=null, version=null, state=null
04-07-2024 17:15:24.261 INFO  [main] o.s.c.b.c.PropertySourceBootstrapConfiguration.initialize(PropertySourceBootstrapConfiguration.java:109) - Located property source: [BootstrapPropertySource {name='bootstrapProperties-vault:application'}]
04-07-2024 17:15:24.265 INFO  [main] c.p.g.GatewayServerApplication.logStartupProfileInfo(SpringApplication.java:651) - No active profile set, falling back to default profiles: default
04-07-2024 17:15:24.739 INFO  [main] o.s.cloud.context.scope.GenericScope.setSerializationId(GenericScope.java:295) - BeanFactory id=478a168c-d172-346e-837e-668edb59c922
04-07-2024 17:15:24.742 INFO  [main] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor.postProcessBeanFactory(EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48) - Post-processing PropertySource instances
04-07-2024 17:15:24.748 INFO  [main] c.u.j.EncryptablePropertySourceConverter.makeEncryptable(EncryptablePropertySourceConverter.java:44) - Converting PropertySource bootstrapProperties-vault:application [org.springframework.cloud.bootstrap.config.BootstrapPropertySource] to EncryptableEnumerablePropertySourceWrapper
04-07-2024 17:15:24.749 INFO  [main] c.u.j.EncryptablePropertySourceConverter.makeEncryptable(EncryptablePropertySourceConverter.java:44) - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
04-07-2024 17:15:24.749 INFO  [main] c.u.j.EncryptablePropertySourceConverter.makeEncryptable(EncryptablePropertySourceConverter.java:44) - Converting PropertySource gateway-properties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
04-07-2024 17:15:24.749 INFO  [main] c.u.j.EncryptablePropertySourceConverter.makeEncryptable(EncryptablePropertySourceConverter.java:44) - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
04-07-2024 17:15:24.751 INFO  [main] c.u.j.EncryptablePropertySourceConverter.makeEncryptable(EncryptablePropertySourceConverter.java:44) - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
04-07-2024 17:15:24.752 INFO  [main] c.u.j.EncryptablePropertySourceConverter.makeEncryptable(EncryptablePropertySourceConverter.java:44) - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
04-07-2024 17:15:24.752 INFO  [main] c.u.j.EncryptablePropertySourceConverter.makeEncryptable(EncryptablePropertySourceConverter.java:44) - Converting PropertySource springCloudClientHostInfo [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
04-07-2024 17:15:24.752 INFO  [main] c.u.j.EncryptablePropertySourceConverter.makeEncryptable(EncryptablePropertySourceConverter.java:44) - Converting PropertySource applicationConfig: [classpath:/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
04-07-2024 17:15:24.752 INFO  [main] c.u.j.EncryptablePropertySourceConverter.makeEncryptable(EncryptablePropertySourceConverter.java:44) - Converting PropertySource springCloudDefaultProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
04-07-2024 17:15:24.789 INFO  [main] c.u.j.filter.DefaultLazyPropertyFilter.lambda$null$2(DefaultLazyPropertyFilter.java:31) - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
04-07-2024 17:15:24.817 INFO  [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker.postProcessAfterInitialization(PostProcessorRegistrationDelegate$BeanPostProcessorChecker.java:330) - Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
04-07-2024 17:15:24.818 INFO  [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker.postProcessAfterInitialization(PostProcessorRegistrationDelegate$BeanPostProcessorChecker.java:330) - Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactiveLoadBalancerConfig' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactiveLoadBalancerConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
04-07-2024 17:15:24.820 INFO  [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker.postProcessAfterInitialization(PostProcessorRegistrationDelegate$BeanPostProcessorChecker.java:330) - Bean 'deferringLoadBalancerExchangeFilterFunction' of type [org.springframework.cloud.client.loadbalancer.reactive.DeferringLoadBalancerExchangeFilterFunction] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
04-07-2024 17:15:24.859 INFO  [main] c.u.j.r.DefaultLazyPropertyResolver.lambda$null$2(DefaultLazyPropertyResolver.java:35) - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
04-07-2024 17:15:24.861 INFO  [main] c.u.j.d.DefaultLazyPropertyDetector.lambda$null$2(DefaultLazyPropertyDetector.java:35) - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
ENVS : null
04-07-2024 17:15:24.912 WARN  [main] c.n.c.sources.URLConfigurationSource.<init>(URLConfigurationSource.java:121) - No URLs will be polled as dynamic configuration sources.
04-07-2024 17:15:24.912 INFO  [main] c.n.c.sources.URLConfigurationSource.<init>(URLConfigurationSource.java:122) - To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath.
04-07-2024 17:15:24.915 WARN  [main] c.n.c.sources.URLConfigurationSource.<init>(URLConfigurationSource.java:121) - No URLs will be polled as dynamic configuration sources.
04-07-2024 17:15:24.915 INFO  [main] c.n.c.sources.URLConfigurationSource.<init>(URLConfigurationSource.java:122) - To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath.
04-07-2024 17:15:26.715 INFO  [main] o.s.c.g.r.RouteDefinitionRouteLocator.lambda$initFactories$2(RouteDefinitionRouteLocator.java:139) - Loaded RoutePredicateFactory [After]
04-07-2024 17:15:26.715 INFO  [main] o.s.c.g.r.RouteDefinitionRouteLocator.lambda$initFactories$2(RouteDefinitionRouteLocator.java:139) - Loaded RoutePredicateFactory [Before]
04-07-2024 17:15:26.715 INFO  [main] o.s.c.g.r.RouteDefinitionRouteLocator.lambda$initFactories$2(RouteDefinitionRouteLocator.java:139) - Loaded RoutePredicateFactory [Between]
04-07-2024 17:15:26.716 INFO  [main] o.s.c.g.r.RouteDefinitionRouteLocator.lambda$initFactories$2(RouteDefinitionRouteLocator.java:139) - Loaded RoutePredicateFactory [Cookie]
04-07-2024 17:15:26.716 INFO  [main] o.s.c.g.r.RouteDefinitionRouteLocator.lambda$initFactories$2(RouteDefinitionRouteLocator.java:139) - Loaded RoutePredicateFactory [Header]
04-07-2024 17:15:26.718 INFO  [main] o.s.c.g.r.RouteDefinitionRouteLocator.lambda$initFactories$2(RouteDefinitionRouteLocator.java:139) - Loaded RoutePredicateFactory [Host]
04-07-2024 17:15:26.718 INFO  [main] o.s.c.g.r.RouteDefinitionRouteLocator.lambda$initFactories$2(RouteDefinitionRouteLocator.java:139) - Loaded RoutePredicateFactory [Method]
04-07-2024 17:15:26.719 INFO  [main] o.s.c.g.r.RouteDefinitionRouteLocator.lambda$initFactories$2(RouteDefinitionRouteLocator.java:139) - Loaded RoutePredicateFactory [Path]
04-07-2024 17:15:26.719 INFO  [main] o.s.c.g.r.RouteDefinitionRouteLocator.lambda$initFactories$2(RouteDefinitionRouteLocator.java:139) - Loaded RoutePredicateFactory [Query]
04-07-2024 17:15:26.719 INFO  [main] o.s.c.g.r.RouteDefinitionRouteLocator.lambda$initFactories$2(RouteDefinitionRouteLocator.java:139) - Loaded RoutePredicateFactory [ReadBodyPredicateFactory]
04-07-2024 17:15:26.719 INFO  [main] o.s.c.g.r.RouteDefinitionRouteLocator.lambda$initFactories$2(RouteDefinitionRouteLocator.java:139) - Loaded RoutePredicateFactory [RemoteAddr]
04-07-2024 17:15:26.719 INFO  [main] o.s.c.g.r.RouteDefinitionRouteLocator.lambda$initFactories$2(RouteDefinitionRouteLocator.java:139) - Loaded RoutePredicateFactory [Weight]
04-07-2024 17:15:26.720 INFO  [main] o.s.c.g.r.RouteDefinitionRouteLocator.lambda$initFactories$2(RouteDefinitionRouteLocator.java:139) - Loaded RoutePredicateFactory [CloudFoundryRouteService]
04-07-2024 17:15:27.665 WARN  [main] o.s.c.l.c.BlockingLoadBalancerClientAutoConfiguration$BlockingLoadBalancerClientRibbonWarnLogger.logWarning(BlockingLoadBalancerClientAutoConfiguration$BlockingLoadBalancerClientRibbonWarnLogger.java:86) - You already have RibbonLoadBalancerClient on your classpath. It will be used by default. As Spring Cloud Ribbon is in maintenance mode. We recommend switching to BlockingLoadBalancerClient instead. In order to use it, set the value of `spring.cloud.loadbalancer.ribbon.enabled` to `false` or remove spring-cloud-starter-netflix-ribbon from your project.
04-07-2024 17:15:27.676 WARN  [main] o.s.c.c.l.r.ReactorLoadBalancerClientAutoConfiguration$ReactorLoadBalancerClientRibbonWarnLogger.logWarning(ReactorLoadBalancerClientAutoConfiguration$ReactorLoadBalancerClientRibbonWarnLogger.java:75) - You have RibbonLoadBalancerClient on your classpath. LoadBalancerExchangeFilterFunction that uses it under the hood will be used by default. Spring Cloud Ribbon is now in maintenance mode, so we suggest switching to ReactorLoadBalancerExchangeFilterFunction instead. In order to use it, set the value of `spring.cloud.loadbalancer.ribbon.enabled` to `false` or remove spring-cloud-starter-netflix-ribbon from your project.
04-07-2024 17:15:27.772 INFO  [main] o.s.c.netflix.eureka.InstanceInfoFactory.create(InstanceInfoFactory.java:72) - Setting initial instance status as: STARTING
04-07-2024 17:15:27.803 INFO  [main] com.netflix.discovery.DiscoveryClient.<init>(DiscoveryClient.java:365) - Initializing Eureka in region us-east-1
04-07-2024 17:15:27.943 INFO  [main] c.n.d.provider.DiscoveryJerseyProvider.<init>(DiscoveryJerseyProvider.java:70) - Using JSON encoding codec LegacyJacksonJson
04-07-2024 17:15:27.944 INFO  [main] c.n.d.provider.DiscoveryJerseyProvider.<init>(DiscoveryJerseyProvider.java:71) - Using JSON decoding codec LegacyJacksonJson
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by com.thoughtworks.xstream.core.util.Fields (file:/C:/Users/Shan/.m2/repository/com/thoughtworks/xstream/xstream/1.4.11.1/xstream-1.4.11.1.jar) to field java.util.TreeMap.comparator
WARNING: Please consider reporting this to the maintainers of com.thoughtworks.xstream.core.util.Fields
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release
04-07-2024 17:15:28.163 INFO  [main] c.n.d.provider.DiscoveryJerseyProvider.<init>(DiscoveryJerseyProvider.java:80) - Using XML encoding codec XStreamXml
04-07-2024 17:15:28.163 INFO  [main] c.n.d.provider.DiscoveryJerseyProvider.<init>(DiscoveryJerseyProvider.java:81) - Using XML decoding codec XStreamXml
04-07-2024 17:15:28.281 INFO  [main] c.n.d.s.r.aws.ConfigClusterResolver.getClusterEndpoints(ConfigClusterResolver.java:43) - Resolving eureka endpoints via configuration
04-07-2024 17:15:28.552 INFO  [main] com.netflix.discovery.DiscoveryClient.fetchRegistry(DiscoveryClient.java:976) - Disable delta property : false
04-07-2024 17:15:28.553 INFO  [main] com.netflix.discovery.DiscoveryClient.fetchRegistry(DiscoveryClient.java:977) - Single vip registry refresh property : null
04-07-2024 17:15:28.553 INFO  [main] com.netflix.discovery.DiscoveryClient.fetchRegistry(DiscoveryClient.java:978) - Force full registry fetch : false
04-07-2024 17:15:28.555 INFO  [main] com.netflix.discovery.DiscoveryClient.fetchRegistry(DiscoveryClient.java:979) - Application is null : false
04-07-2024 17:15:28.555 INFO  [main] com.netflix.discovery.DiscoveryClient.fetchRegistry(DiscoveryClient.java:980) - Registered Applications size is zero : true
04-07-2024 17:15:28.555 INFO  [main] com.netflix.discovery.DiscoveryClient.fetchRegistry(DiscoveryClient.java:982) - Application version is -1: true
04-07-2024 17:15:28.555 INFO  [main] com.netflix.discovery.DiscoveryClient.getAndStoreFullRegistry(DiscoveryClient.java:1065) - Getting all instance registry info from the eureka server
04-07-2024 17:15:28.807 INFO  [main] com.netflix.discovery.DiscoveryClient.getAndStoreFullRegistry(DiscoveryClient.java:1074) - The response status is 200
04-07-2024 17:15:28.809 INFO  [main] com.netflix.discovery.DiscoveryClient.initScheduledTasks(DiscoveryClient.java:1288) - Starting heartbeat executor: renew interval is: 30
04-07-2024 17:15:28.811 INFO  [main] c.n.discovery.InstanceInfoReplicator.<init>(InstanceInfoReplicator.java:60) - InstanceInfoReplicator onDemand update allowed rate per min is 4
04-07-2024 17:15:28.816 INFO  [main] com.netflix.discovery.DiscoveryClient.<init>(DiscoveryClient.java:465) - Discovery Client initialized at timestamp 1720093528815 with initial instances count: 0
04-07-2024 17:15:28.817 INFO  [main] o.s.c.n.e.s.EurekaServiceRegistry.register(EurekaServiceRegistry.java:41) - Registering application GATEWAY-SERVER with eureka with status UP
04-07-2024 17:15:28.818 INFO  [main] com.netflix.discovery.DiscoveryClient.notify(DiscoveryClient$3.java:1323) - Saw local status change event StatusChangeEvent [timestamp=1720093528818, current=UP, previous=STARTING]
04-07-2024 17:15:28.823 INFO  [DiscoveryClient-InstanceInfoReplicator-0] com.netflix.discovery.DiscoveryClient.register(DiscoveryClient.java:844) - DiscoveryClient_GATEWAY-SERVER/localhost:gateway-server:9000: registering service...
04-07-2024 17:15:28.890 INFO  [DiscoveryClient-InstanceInfoReplicator-0] com.netflix.discovery.DiscoveryClient.register(DiscoveryClient.java:853) - DiscoveryClient_GATEWAY-SERVER/localhost:gateway-server:9000 - registration status: 204
04-07-2024 17:15:29.337 INFO  [main] o.s.b.web.embedded.netty.NettyWebServer.start(NettyWebServer.java:89) - Netty started on port(s): 9000
04-07-2024 17:15:29.339 INFO  [main] o.s.c.n.e.s.EurekaAutoServiceRegistration.onApplicationEvent(EurekaAutoServiceRegistration.java:145) - Updating port to 9000
04-07-2024 17:15:30.036 INFO  [main] c.p.g.GatewayServerApplication.logStarted(StartupInfoLogger.java:61) - Started GatewayServerApplication in 7.91 seconds (JVM running for 10.028)
04-07-2024 17:15:58.810 INFO  [DiscoveryClient-CacheRefreshExecutor-0] com.netflix.discovery.DiscoveryClient.fetchRegistry(DiscoveryClient.java:976) - Disable delta property : false
04-07-2024 17:15:58.810 INFO  [DiscoveryClient-CacheRefreshExecutor-0] com.netflix.discovery.DiscoveryClient.fetchRegistry(DiscoveryClient.java:977) - Single vip registry refresh property : null
04-07-2024 17:15:58.810 INFO  [DiscoveryClient-CacheRefreshExecutor-0] com.netflix.discovery.DiscoveryClient.fetchRegistry(DiscoveryClient.java:978) - Force full registry fetch : false
04-07-2024 17:15:58.810 INFO  [DiscoveryClient-CacheRefreshExecutor-0] com.netflix.discovery.DiscoveryClient.fetchRegistry(DiscoveryClient.java:979) - Application is null : false
04-07-2024 17:15:58.810 INFO  [DiscoveryClient-CacheRefreshExecutor-0] com.netflix.discovery.DiscoveryClient.fetchRegistry(DiscoveryClient.java:980) - Registered Applications size is zero : true
04-07-2024 17:15:58.815 INFO  [DiscoveryClient-CacheRefreshExecutor-0] com.netflix.discovery.DiscoveryClient.fetchRegistry(DiscoveryClient.java:982) - Application version is -1: false
04-07-2024 17:15:58.815 INFO  [DiscoveryClient-CacheRefreshExecutor-0] com.netflix.discovery.DiscoveryClient.getAndStoreFullRegistry(DiscoveryClient.java:1065) - Getting all instance registry info from the eureka server
04-07-2024 17:15:58.843 INFO  [DiscoveryClient-CacheRefreshExecutor-0] com.netflix.discovery.DiscoveryClient.getAndStoreFullRegistry(DiscoveryClient.java:1074) - The response status is 200
UmashankarPalanichamy commented 2 months ago
C:\Users\Shan\.jdks\corretto-11.0.23\bin\java.exe -XX:TieredStopAtLevel=1 -noverify -Dspring.output.ansi.enabled=always -Dcom.sun.management.jmxremote -Dspring.jmx.enabled=true -Dspring.liveBeansView.mbeanDomain -Dspring.application.admin.enabled=true "-Dmanagement.endpoints.jmx.exposure.include=*" "-javaagent:C:\Program Files\JetBrains\IntelliJ IDEA 2024.1.1\lib\idea_rt.jar=54820:C:\Program Files\JetBrains\IntelliJ IDEA 2024.1.1\bin" -Dfile.encoding=UTF-8 @C:\Users\Shan\AppData\Local\Temp\idea_arg_file1893214878 com.p3solutions.ArchonConfigServerApplication
2024-07-04 17:15:10.329  INFO 20636 --- [           main] o.s.s.c.ThreadPoolTaskScheduler          : Initializing ExecutorService

  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::        (v2.2.2.RELEASE)

2024-07-04 17:15:10.965  INFO 20636 --- [           main] o.s.v.c.e.LeaseAwareVaultPropertySource  : Vault location [secret/application/vault] not resolvable: Not found
2024-07-04 17:15:11.000  INFO 20636 --- [           main] b.c.PropertySourceBootstrapConfiguration : Located property source: [BootstrapPropertySource {name='bootstrapProperties-secret/application/vault'}, BootstrapPropertySource {name='bootstrapProperties-secret/application'}]
2024-07-04 17:15:11.005  INFO 20636 --- [           main] c.p.ArchonConfigServerApplication        : The following profiles are active: vault
2024-07-04 17:15:11.714  INFO 20636 --- [           main] o.s.cloud.context.scope.GenericScope     : BeanFactory id=800fdb23-d8dd-3a1b-b714-780013e62ef3
2024-07-04 17:15:11.990  INFO 20636 --- [           main] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat initialized with port(s): 9999 (http)
2024-07-04 17:15:12.002  INFO 20636 --- [           main] o.apache.catalina.core.StandardService   : Starting service [Tomcat]
2024-07-04 17:15:12.002  INFO 20636 --- [           main] org.apache.catalina.core.StandardEngine  : Starting Servlet engine: [Apache Tomcat/9.0.29]
2024-07-04 17:15:12.127  INFO 20636 --- [           main] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring embedded WebApplicationContext
2024-07-04 17:15:12.127  INFO 20636 --- [           main] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 1109 ms
ENVS : www
ENVS : 9999
2024-07-04 17:15:12.512  INFO 20636 --- [           main] o.s.s.concurrent.ThreadPoolTaskExecutor  : Initializing ExecutorService 'applicationTaskExecutor'
2024-07-04 17:15:13.318  INFO 20636 --- [           main] o.s.b.a.e.web.EndpointLinksResolver      : Exposing 2 endpoint(s) beneath base path '/actuator'
2024-07-04 17:15:13.414  INFO 20636 --- [           main] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat started on port(s): 9999 (http) with context path ''
2024-07-04 17:15:13.720  INFO 20636 --- [           main] c.p.ArchonConfigServerApplication        : Started ArchonConfigServerApplication in 4.762 seconds (JVM running for 5.66)
2024-07-04 17:15:14.531  INFO 20636 --- [2)-192.168.1.40] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-07-04 17:15:14.531  INFO 20636 --- [2)-192.168.1.40] o.s.web.servlet.DispatcherServlet        : Initializing Servlet 'dispatcherServlet'
2024-07-04 17:15:14.538  INFO 20636 --- [2)-192.168.1.40] o.s.web.servlet.DispatcherServlet        : Completed initialization in 7 ms

config

UmashankarPalanichamy commented 2 months ago
C:\Users\Shan\.jdks\corretto-11.0.23\bin\java.exe -XX:TieredStopAtLevel=1 -noverify -Dspring.output.ansi.enabled=always -Dcom.sun.management.jmxremote -Dspring.jmx.enabled=true -Dspring.liveBeansView.mbeanDomain -Dspring.application.admin.enabled=true "-Dmanagement.endpoints.jmx.exposure.include=*" "-javaagent:C:\Program Files\JetBrains\IntelliJ IDEA 2024.1.1\lib\idea_rt.jar=54839:C:\Program Files\JetBrains\IntelliJ IDEA 2024.1.1\bin" -Dfile.encoding=UTF-8 -classpath C:\Users\Shan\IdeaProjects\AETL_BE\archon-gateway-service\target\classes;C:\Users\Shan\.m2\repository\org\springframework\cloud\spring-cloud-starter-gateway\2.2.1.RELEASE\spring-cloud-starter-gateway-2.2.1.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\cloud\spring-cloud-starter\2.2.1.RELEASE\spring-cloud-starter-2.2.1.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\security\spring-security-rsa\1.0.9.RELEASE\spring-security-rsa-1.0.9.RELEASE.jar;C:\Users\Shan\.m2\repository\org\bouncycastle\bcpkix-jdk15on\1.64\bcpkix-jdk15on-1.64.jar;C:\Users\Shan\.m2\repository\org\bouncycastle\bcprov-jdk15on\1.64\bcprov-jdk15on-1.64.jar;C:\Users\Shan\.m2\repository\org\springframework\cloud\spring-cloud-gateway-core\2.2.1.RELEASE\spring-cloud-gateway-core-2.2.1.RELEASE.jar;C:\Users\Shan\.m2\repository\io\projectreactor\addons\reactor-extra\3.3.1.RELEASE\reactor-extra-3.3.1.RELEASE.jar;C:\Users\Shan\.m2\repository\io\projectreactor\reactor-core\3.3.1.RELEASE\reactor-core-3.3.1.RELEASE.jar;C:\Users\Shan\.m2\repository\org\reactivestreams\reactive-streams\1.0.3\reactive-streams-1.0.3.jar;C:\Users\Shan\.m2\repository\org\springframework\boot\spring-boot-starter-webflux\2.2.2.RELEASE\spring-boot-starter-webflux-2.2.2.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\boot\spring-boot-starter-json\2.2.2.RELEASE\spring-boot-starter-json-2.2.2.RELEASE.jar;C:\Users\Shan\.m2\repository\com\fasterxml\jackson\datatype\jackson-datatype-jdk8\2.10.1\jackson-datatype-jdk8-2.10.1.jar;C:\Users\Shan\.m2\repository\com\fasterxml\jackson\datatype\jackson-datatype-jsr310\2.10.1\jackson-datatype-jsr310-2.10.1.jar;C:\Users\Shan\.m2\repository\com\fasterxml\jackson\module\jackson-module-parameter-names\2.10.1\jackson-module-parameter-names-2.10.1.jar;C:\Users\Shan\.m2\repository\org\springframework\boot\spring-boot-starter-reactor-netty\2.2.2.RELEASE\spring-boot-starter-reactor-netty-2.2.2.RELEASE.jar;C:\Users\Shan\.m2\repository\io\projectreactor\netty\reactor-netty\0.9.2.RELEASE\reactor-netty-0.9.2.RELEASE.jar;C:\Users\Shan\.m2\repository\io\netty\netty-codec-http\4.1.43.Final\netty-codec-http-4.1.43.Final.jar;C:\Users\Shan\.m2\repository\io\netty\netty-common\4.1.43.Final\netty-common-4.1.43.Final.jar;C:\Users\Shan\.m2\repository\io\netty\netty-buffer\4.1.43.Final\netty-buffer-4.1.43.Final.jar;C:\Users\Shan\.m2\repository\io\netty\netty-transport\4.1.43.Final\netty-transport-4.1.43.Final.jar;C:\Users\Shan\.m2\repository\io\netty\netty-resolver\4.1.43.Final\netty-resolver-4.1.43.Final.jar;C:\Users\Shan\.m2\repository\io\netty\netty-codec\4.1.43.Final\netty-codec-4.1.43.Final.jar;C:\Users\Shan\.m2\repository\io\netty\netty-codec-http2\4.1.43.Final\netty-codec-http2-4.1.43.Final.jar;C:\Users\Shan\.m2\repository\io\netty\netty-handler\4.1.43.Final\netty-handler-4.1.43.Final.jar;C:\Users\Shan\.m2\repository\io\netty\netty-handler-proxy\4.1.43.Final\netty-handler-proxy-4.1.43.Final.jar;C:\Users\Shan\.m2\repository\io\netty\netty-codec-socks\4.1.43.Final\netty-codec-socks-4.1.43.Final.jar;C:\Users\Shan\.m2\repository\io\netty\netty-transport-native-epoll\4.1.43.Final\netty-transport-native-epoll-4.1.43.Final-linux-x86_64.jar;C:\Users\Shan\.m2\repository\io\netty\netty-transport-native-unix-common\4.1.43.Final\netty-transport-native-unix-common-4.1.43.Final.jar;C:\Users\Shan\.m2\repository\org\glassfish\jakarta.el\3.0.3\jakarta.el-3.0.3.jar;C:\Users\Shan\.m2\repository\org\springframework\boot\spring-boot-starter-validation\2.2.2.RELEASE\spring-boot-starter-validation-2.2.2.RELEASE.jar;C:\Users\Shan\.m2\repository\jakarta\validation\jakarta.validation-api\2.0.1\jakarta.validation-api-2.0.1.jar;C:\Users\Shan\.m2\repository\org\hibernate\validator\hibernate-validator\6.0.18.Final\hibernate-validator-6.0.18.Final.jar;C:\Users\Shan\.m2\repository\org\jboss\logging\jboss-logging\3.4.1.Final\jboss-logging-3.4.1.Final.jar;C:\Users\Shan\.m2\repository\com\fasterxml\classmate\1.5.1\classmate-1.5.1.jar;C:\Users\Shan\.m2\repository\org\springframework\spring-webflux\5.2.2.RELEASE\spring-webflux-5.2.2.RELEASE.jar;C:\Users\Shan\.m2\repository\org\synchronoss\cloud\nio-multipart-parser\1.1.0\nio-multipart-parser-1.1.0.jar;C:\Users\Shan\.m2\repository\org\synchronoss\cloud\nio-stream-storage\1.1.3\nio-stream-storage-1.1.3.jar;C:\Users\Shan\.m2\repository\org\springframework\cloud\spring-cloud-config-client\2.2.1.RELEASE\spring-cloud-config-client-2.2.1.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\boot\spring-boot-autoconfigure\2.2.2.RELEASE\spring-boot-autoconfigure-2.2.2.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\boot\spring-boot\2.2.2.RELEASE\spring-boot-2.2.2.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\spring-context\5.2.2.RELEASE\spring-context-5.2.2.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\spring-expression\5.2.2.RELEASE\spring-expression-5.2.2.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\cloud\spring-cloud-commons\2.2.1.RELEASE\spring-cloud-commons-2.2.1.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\security\spring-security-crypto\5.2.1.RELEASE\spring-security-crypto-5.2.1.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\cloud\spring-cloud-context\2.2.1.RELEASE\spring-cloud-context-2.2.1.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\spring-web\5.2.2.RELEASE\spring-web-5.2.2.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\spring-beans\5.2.2.RELEASE\spring-beans-5.2.2.RELEASE.jar;C:\Users\Shan\.m2\repository\com\fasterxml\jackson\core\jackson-annotations\2.10.1\jackson-annotations-2.10.1.jar;C:\Users\Shan\.m2\repository\com\fasterxml\jackson\core\jackson-databind\2.10.1\jackson-databind-2.10.1.jar;C:\Users\Shan\.m2\repository\com\fasterxml\jackson\core\jackson-core\2.10.1\jackson-core-2.10.1.jar;C:\Users\Shan\.m2\repository\org\springframework\cloud\spring-cloud-starter-netflix-eureka-client\2.2.1.RELEASE\spring-cloud-starter-netflix-eureka-client-2.2.1.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\cloud\spring-cloud-netflix-hystrix\2.2.1.RELEASE\spring-cloud-netflix-hystrix-2.2.1.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\boot\spring-boot-starter-aop\2.2.2.RELEASE\spring-boot-starter-aop-2.2.2.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\spring-aop\5.2.2.RELEASE\spring-aop-5.2.2.RELEASE.jar;C:\Users\Shan\.m2\repository\org\aspectj\aspectjweaver\1.9.5\aspectjweaver-1.9.5.jar;C:\Users\Shan\.m2\repository\org\springframework\cloud\spring-cloud-netflix-eureka-client\2.2.1.RELEASE\spring-cloud-netflix-eureka-client-2.2.1.RELEASE.jar;C:\Users\Shan\.m2\repository\com\netflix\eureka\eureka-client\1.9.13\eureka-client-1.9.13.jar;C:\Users\Shan\.m2\repository\org\codehaus\jettison\jettison\1.3.7\jettison-1.3.7.jar;C:\Users\Shan\.m2\repository\stax\stax-api\1.0.1\stax-api-1.0.1.jar;C:\Users\Shan\.m2\repository\com\netflix\netflix-commons\netflix-eventbus\0.3.0\netflix-eventbus-0.3.0.jar;C:\Users\Shan\.m2\repository\com\netflix\netflix-commons\netflix-infix\0.3.0\netflix-infix-0.3.0.jar;C:\Users\Shan\.m2\repository\commons-jxpath\commons-jxpath\1.3\commons-jxpath-1.3.jar;C:\Users\Shan\.m2\repository\joda-time\joda-time\2.10.5\joda-time-2.10.5.jar;C:\Users\Shan\.m2\repository\org\antlr\antlr-runtime\3.4\antlr-runtime-3.4.jar;C:\Users\Shan\.m2\repository\org\antlr\stringtemplate\3.2.1\stringtemplate-3.2.1.jar;C:\Users\Shan\.m2\repository\antlr\antlr\2.7.7\antlr-2.7.7.jar;C:\Users\Shan\.m2\repository\org\apache\commons\commons-math\2.2\commons-math-2.2.jar;C:\Users\Shan\.m2\repository\com\netflix\archaius\archaius-core\0.7.6\archaius-core-0.7.6.jar;C:\Users\Shan\.m2\repository\com\google\guava\guava\16.0\guava-16.0.jar;C:\Users\Shan\.m2\repository\javax\ws\rs\jsr311-api\1.1.1\jsr311-api-1.1.1.jar;C:\Users\Shan\.m2\repository\com\netflix\servo\servo-core\0.12.21\servo-core-0.12.21.jar;C:\Users\Shan\.m2\repository\com\sun\jersey\jersey-core\1.19.1\jersey-core-1.19.1.jar;C:\Users\Shan\.m2\repository\com\sun\jersey\jersey-client\1.19.1\jersey-client-1.19.1.jar;C:\Users\Shan\.m2\repository\com\sun\jersey\contribs\jersey-apache-client4\1.19.1\jersey-apache-client4-1.19.1.jar;C:\Users\Shan\.m2\repository\org\apache\httpcomponents\httpclient\4.5.10\httpclient-4.5.10.jar;C:\Users\Shan\.m2\repository\org\apache\httpcomponents\httpcore\4.4.12\httpcore-4.4.12.jar;C:\Users\Shan\.m2\repository\commons-codec\commons-codec\1.13\commons-codec-1.13.jar;C:\Users\Shan\.m2\repository\com\google\inject\guice\4.1.0\guice-4.1.0.jar;C:\Users\Shan\.m2\repository\javax\inject\javax.inject\1\javax.inject-1.jar;C:\Users\Shan\.m2\repository\aopalliance\aopalliance\1.0\aopalliance-1.0.jar;C:\Users\Shan\.m2\repository\com\netflix\eureka\eureka-core\1.9.13\eureka-core-1.9.13.jar;C:\Users\Shan\.m2\repository\com\fasterxml\woodstox\woodstox-core\5.2.1\woodstox-core-5.2.1.jar;C:\Users\Shan\.m2\repository\org\codehaus\woodstox\stax2-api\4.2\stax2-api-4.2.jar;C:\Users\Shan\.m2\repository\org\springframework\cloud\spring-cloud-starter-netflix-archaius\2.2.1.RELEASE\spring-cloud-starter-netflix-archaius-2.2.1.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\cloud\spring-cloud-netflix-ribbon\2.2.1.RELEASE\spring-cloud-netflix-ribbon-2.2.1.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\cloud\spring-cloud-netflix-archaius\2.2.1.RELEASE\spring-cloud-netflix-archaius-2.2.1.RELEASE.jar;C:\Users\Shan\.m2\repository\commons-configuration\commons-configuration\1.8\commons-configuration-1.8.jar;C:\Users\Shan\.m2\repository\org\springframework\cloud\spring-cloud-starter-netflix-ribbon\2.2.1.RELEASE\spring-cloud-starter-netflix-ribbon-2.2.1.RELEASE.jar;C:\Users\Shan\.m2\repository\com\netflix\ribbon\ribbon\2.3.0\ribbon-2.3.0.jar;C:\Users\Shan\.m2\repository\com\netflix\ribbon\ribbon-transport\2.3.0\ribbon-transport-2.3.0.jar;C:\Users\Shan\.m2\repository\io\reactivex\rxnetty-contexts\0.4.9\rxnetty-contexts-0.4.9.jar;C:\Users\Shan\.m2\repository\io\reactivex\rxnetty-servo\0.4.9\rxnetty-servo-0.4.9.jar;C:\Users\Shan\.m2\repository\com\netflix\hystrix\hystrix-core\1.5.18\hystrix-core-1.5.18.jar;C:\Users\Shan\.m2\repository\org\hdrhistogram\HdrHistogram\2.1.9\HdrHistogram-2.1.9.jar;C:\Users\Shan\.m2\repository\io\reactivex\rxnetty\0.4.9\rxnetty-0.4.9.jar;C:\Users\Shan\.m2\repository\com\netflix\ribbon\ribbon-core\2.3.0\ribbon-core-2.3.0.jar;C:\Users\Shan\.m2\repository\com\netflix\ribbon\ribbon-httpclient\2.3.0\ribbon-httpclient-2.3.0.jar;C:\Users\Shan\.m2\repository\commons-collections\commons-collections\3.2.2\commons-collections-3.2.2.jar;C:\Users\Shan\.m2\repository\com\netflix\netflix-commons\netflix-commons-util\0.3.0\netflix-commons-util-0.3.0.jar;C:\Users\Shan\.m2\repository\com\netflix\ribbon\ribbon-loadbalancer\2.3.0\ribbon-loadbalancer-2.3.0.jar;C:\Users\Shan\.m2\repository\com\netflix\netflix-commons\netflix-statistics\0.1.1\netflix-statistics-0.1.1.jar;C:\Users\Shan\.m2\repository\io\reactivex\rxjava\1.3.8\rxjava-1.3.8.jar;C:\Users\Shan\.m2\repository\org\springframework\cloud\spring-cloud-starter-loadbalancer\2.2.1.RELEASE\spring-cloud-starter-loadbalancer-2.2.1.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\cloud\spring-cloud-loadbalancer\2.2.1.RELEASE\spring-cloud-loadbalancer-2.2.1.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\boot\spring-boot-starter-cache\2.2.2.RELEASE\spring-boot-starter-cache-2.2.2.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\spring-context-support\5.2.2.RELEASE\spring-context-support-5.2.2.RELEASE.jar;C:\Users\Shan\.m2\repository\com\stoyanr\evictor\1.0.0\evictor-1.0.0.jar;C:\Users\Shan\.m2\repository\com\netflix\ribbon\ribbon-eureka\2.3.0\ribbon-eureka-2.3.0.jar;C:\Users\Shan\.m2\repository\com\thoughtworks\xstream\xstream\1.4.11.1\xstream-1.4.11.1.jar;C:\Users\Shan\.m2\repository\xmlpull\xmlpull\1.1.3.1\xmlpull-1.1.3.1.jar;C:\Users\Shan\.m2\repository\xpp3\xpp3_min\1.1.4c\xpp3_min-1.1.4c.jar;C:\Users\Shan\.m2\repository\org\springframework\cloud\spring-cloud-starter-config\2.2.1.RELEASE\spring-cloud-starter-config-2.2.1.RELEASE.jar;C:\Users\Shan\.m2\repository\com\github\ulisesbocchio\jasypt-spring-boot-starter\3.0.2\jasypt-spring-boot-starter-3.0.2.jar;C:\Users\Shan\.m2\repository\com\github\ulisesbocchio\jasypt-spring-boot\3.0.2\jasypt-spring-boot-3.0.2.jar;C:\Users\Shan\.m2\repository\org\jasypt\jasypt\1.9.3\jasypt-1.9.3.jar;C:\Users\Shan\.m2\repository\org\springframework\boot\spring-boot-starter\2.2.2.RELEASE\spring-boot-starter-2.2.2.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\boot\spring-boot-starter-logging\2.2.2.RELEASE\spring-boot-starter-logging-2.2.2.RELEASE.jar;C:\Users\Shan\.m2\repository\ch\qos\logback\logback-classic\1.2.3\logback-classic-1.2.3.jar;C:\Users\Shan\.m2\repository\ch\qos\logback\logback-core\1.2.3\logback-core-1.2.3.jar;C:\Users\Shan\.m2\repository\org\slf4j\jul-to-slf4j\1.7.29\jul-to-slf4j-1.7.29.jar;C:\Users\Shan\.m2\repository\jakarta\annotation\jakarta.annotation-api\1.3.5\jakarta.annotation-api-1.3.5.jar;C:\Users\Shan\.m2\repository\org\yaml\snakeyaml\1.25\snakeyaml-1.25.jar;C:\Users\Shan\.m2\repository\org\springframework\spring-core\5.2.2.RELEASE\spring-core-5.2.2.RELEASE.jar;C:\Users\Shan\.m2\repository\org\springframework\spring-jcl\5.2.2.RELEASE\spring-jcl-5.2.2.RELEASE.jar;C:\Users\Shan\.m2\repository\org\sonarsource\scanner\maven\sonar-maven-plugin\3.5.0.1254\sonar-maven-plugin-3.5.0.1254.jar;C:\Users\Shan\.m2\repository\org\sonatype\plexus\plexus-sec-dispatcher\1.4\plexus-sec-dispatcher-1.4.jar;C:\Users\Shan\.m2\repository\org\sonatype\plexus\plexus-cipher\1.4\plexus-cipher-1.4.jar;C:\Users\Shan\.m2\repository\org\codehaus\plexus\plexus-utils\3.0.22\plexus-utils-3.0.22.jar;C:\Users\Shan\.m2\repository\org\sonarsource\scanner\api\sonar-scanner-api\2.10.0.1189\sonar-scanner-api-2.10.0.1189.jar;C:\Users\Shan\.m2\repository\commons-lang\commons-lang\2.6\commons-lang-2.6.jar;C:\Users\Shan\.m2\repository\org\codehaus\janino\janino\3.0.6\janino-3.0.6.jar;C:\Users\Shan\.m2\repository\org\codehaus\janino\commons-compiler\3.1.0\commons-compiler-3.1.0.jar;C:\Users\Shan\.m2\repository\org\apache\logging\log4j\log4j-to-slf4j\2.17.1\log4j-to-slf4j-2.17.1.jar;C:\Users\Shan\.m2\repository\org\slf4j\slf4j-api\1.7.29\slf4j-api-1.7.29.jar;C:\Users\Shan\.m2\repository\org\apache\logging\log4j\log4j-core\2.17.1\log4j-core-2.17.1.jar;C:\Users\Shan\.m2\repository\org\apache\logging\log4j\log4j-api\2.17.1\log4j-api-2.17.1.jar;C:\Users\Shan\.m2\repository\com\splunk\logging\splunk-library-javalogging\1.8.0\splunk-library-javalogging-1.8.0.jar;C:\Users\Shan\.m2\repository\com\squareup\okhttp3\okhttp\3.14.4\okhttp-3.14.4.jar;C:\Users\Shan\.m2\repository\com\squareup\okio\okio\1.17.2\okio-1.17.2.jar;C:\Users\Shan\.m2\repository\com\google\code\gson\gson\2.8.6\gson-2.8.6.jar com.p3solutions.gatewayserver.GatewayServerApplication
04-07-2024 17:15:23.367 INFO  [main] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor.postProcessBeanFactory(EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48) - Post-processing PropertySource instances
04-07-2024 17:15:23.411 INFO  [main] c.u.j.EncryptablePropertySourceConverter.makeEncryptable(EncryptablePropertySourceConverter.java:44) - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
04-07-2024 17:15:23.413 INFO  [main] c.u.j.EncryptablePropertySourceConverter.makeEncryptable(EncryptablePropertySourceConverter.java:44) - Converting PropertySource gateway-properties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
04-07-2024 17:15:23.413 INFO  [main] c.u.j.EncryptablePropertySourceConverter.makeEncryptable(EncryptablePropertySourceConverter.java:44) - Converting PropertySource bootstrap [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
04-07-2024 17:15:23.413 INFO  [main] c.u.j.EncryptablePropertySourceConverter.makeEncryptable(EncryptablePropertySourceConverter.java:44) - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
04-07-2024 17:15:23.414 INFO  [main] c.u.j.EncryptablePropertySourceConverter.makeEncryptable(EncryptablePropertySourceConverter.java:44) - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
04-07-2024 17:15:23.414 INFO  [main] c.u.j.EncryptablePropertySourceConverter.makeEncryptable(EncryptablePropertySourceConverter.java:44) - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
04-07-2024 17:15:23.414 INFO  [main] c.u.j.EncryptablePropertySourceConverter.makeEncryptable(EncryptablePropertySourceConverter.java:44) - Converting PropertySource springCloudClientHostInfo [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
04-07-2024 17:15:23.415 INFO  [main] c.u.j.EncryptablePropertySourceConverter.makeEncryptable(EncryptablePropertySourceConverter.java:44) - Converting PropertySource applicationConfig: [classpath:/bootstrap.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
04-07-2024 17:15:23.442 INFO  [main] c.u.j.filter.DefaultLazyPropertyFilter.lambda$null$2(DefaultLazyPropertyFilter.java:31) - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
04-07-2024 17:15:23.531 INFO  [main] c.u.j.r.DefaultLazyPropertyResolver.lambda$null$2(DefaultLazyPropertyResolver.java:35) - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
04-07-2024 17:15:23.532 INFO  [main] c.u.j.d.DefaultLazyPropertyDetector.lambda$null$2(DefaultLazyPropertyDetector.java:35) - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector

  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::        (v2.2.2.RELEASE)

04-07-2024 17:15:24.017 INFO  [main] o.s.c.c.c.ConfigServicePropertySourceLocator.getRemoteEnvironment(ConfigServicePropertySourceLocator.java:249) - Fetching config from server at : http://localhost:9999
04-07-2024 17:15:24.260 INFO  [main] o.s.c.c.c.ConfigServicePropertySourceLocator.log(ConfigServicePropertySourceLocator.java:167) - Located environment: name=gateway-server, profiles=[default], label=null, version=null, state=null
04-07-2024 17:15:24.261 INFO  [main] o.s.c.b.c.PropertySourceBootstrapConfiguration.initialize(PropertySourceBootstrapConfiguration.java:109) - Located property source: [BootstrapPropertySource {name='bootstrapProperties-vault:application'}]
04-07-2024 17:15:24.265 INFO  [main] c.p.g.GatewayServerApplication.logStartupProfileInfo(SpringApplication.java:651) - No active profile set, falling back to default profiles: default
04-07-2024 17:15:24.739 INFO  [main] o.s.cloud.context.scope.GenericScope.setSerializationId(GenericScope.java:295) - BeanFactory id=478a168c-d172-346e-837e-668edb59c922
04-07-2024 17:15:24.742 INFO  [main] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor.postProcessBeanFactory(EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48) - Post-processing PropertySource instances
04-07-2024 17:15:24.748 INFO  [main] c.u.j.EncryptablePropertySourceConverter.makeEncryptable(EncryptablePropertySourceConverter.java:44) - Converting PropertySource bootstrapProperties-vault:application [org.springframework.cloud.bootstrap.config.BootstrapPropertySource] to EncryptableEnumerablePropertySourceWrapper
04-07-2024 17:15:24.749 INFO  [main] c.u.j.EncryptablePropertySourceConverter.makeEncryptable(EncryptablePropertySourceConverter.java:44) - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
04-07-2024 17:15:24.749 INFO  [main] c.u.j.EncryptablePropertySourceConverter.makeEncryptable(EncryptablePropertySourceConverter.java:44) - Converting PropertySource gateway-properties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
04-07-2024 17:15:24.749 INFO  [main] c.u.j.EncryptablePropertySourceConverter.makeEncryptable(EncryptablePropertySourceConverter.java:44) - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
04-07-2024 17:15:24.751 INFO  [main] c.u.j.EncryptablePropertySourceConverter.makeEncryptable(EncryptablePropertySourceConverter.java:44) - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
04-07-2024 17:15:24.752 INFO  [main] c.u.j.EncryptablePropertySourceConverter.makeEncryptable(EncryptablePropertySourceConverter.java:44) - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
04-07-2024 17:15:24.752 INFO  [main] c.u.j.EncryptablePropertySourceConverter.makeEncryptable(EncryptablePropertySourceConverter.java:44) - Converting PropertySource springCloudClientHostInfo [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
04-07-2024 17:15:24.752 INFO  [main] c.u.j.EncryptablePropertySourceConverter.makeEncryptable(EncryptablePropertySourceConverter.java:44) - Converting PropertySource applicationConfig: [classpath:/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
04-07-2024 17:15:24.752 INFO  [main] c.u.j.EncryptablePropertySourceConverter.makeEncryptable(EncryptablePropertySourceConverter.java:44) - Converting PropertySource springCloudDefaultProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
04-07-2024 17:15:24.789 INFO  [main] c.u.j.filter.DefaultLazyPropertyFilter.lambda$null$2(DefaultLazyPropertyFilter.java:31) - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
04-07-2024 17:15:24.817 INFO  [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker.postProcessAfterInitialization(PostProcessorRegistrationDelegate$BeanPostProcessorChecker.java:330) - Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
04-07-2024 17:15:24.818 INFO  [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker.postProcessAfterInitialization(PostProcessorRegistrationDelegate$BeanPostProcessorChecker.java:330) - Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactiveLoadBalancerConfig' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactiveLoadBalancerConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
04-07-2024 17:15:24.820 INFO  [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker.postProcessAfterInitialization(PostProcessorRegistrationDelegate$BeanPostProcessorChecker.java:330) - Bean 'deferringLoadBalancerExchangeFilterFunction' of type [org.springframework.cloud.client.loadbalancer.reactive.DeferringLoadBalancerExchangeFilterFunction] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
04-07-2024 17:15:24.859 INFO  [main] c.u.j.r.DefaultLazyPropertyResolver.lambda$null$2(DefaultLazyPropertyResolver.java:35) - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
04-07-2024 17:15:24.861 INFO  [main] c.u.j.d.DefaultLazyPropertyDetector.lambda$null$2(DefaultLazyPropertyDetector.java:35) - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
ENVS : null
04-07-2024 17:15:24.912 WARN  [main] c.n.c.sources.URLConfigurationSource.<init>(URLConfigurationSource.java:121) - No URLs will be polled as dynamic configuration sources.
04-07-2024 17:15:24.912 INFO  [main] c.n.c.sources.URLConfigurationSource.<init>(URLConfigurationSource.java:122) - To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath.
04-07-2024 17:15:24.915 WARN  [main] c.n.c.sources.URLConfigurationSource.<init>(URLConfigurationSource.java:121) - No URLs will be polled as dynamic configuration sources.
04-07-2024 17:15:24.915 INFO  [main] c.n.c.sources.URLConfigurationSource.<init>(URLConfigurationSource.java:122) - To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath.
04-07-2024 17:15:26.715 INFO  [main] o.s.c.g.r.RouteDefinitionRouteLocator.lambda$initFactories$2(RouteDefinitionRouteLocator.java:139) - Loaded RoutePredicateFactory [After]
04-07-2024 17:15:26.715 INFO  [main] o.s.c.g.r.RouteDefinitionRouteLocator.lambda$initFactories$2(RouteDefinitionRouteLocator.java:139) - Loaded RoutePredicateFactory [Before]
04-07-2024 17:15:26.715 INFO  [main] o.s.c.g.r.RouteDefinitionRouteLocator.lambda$initFactories$2(RouteDefinitionRouteLocator.java:139) - Loaded RoutePredicateFactory [Between]
04-07-2024 17:15:26.716 INFO  [main] o.s.c.g.r.RouteDefinitionRouteLocator.lambda$initFactories$2(RouteDefinitionRouteLocator.java:139) - Loaded RoutePredicateFactory [Cookie]
04-07-2024 17:15:26.716 INFO  [main] o.s.c.g.r.RouteDefinitionRouteLocator.lambda$initFactories$2(RouteDefinitionRouteLocator.java:139) - Loaded RoutePredicateFactory [Header]
04-07-2024 17:15:26.718 INFO  [main] o.s.c.g.r.RouteDefinitionRouteLocator.lambda$initFactories$2(RouteDefinitionRouteLocator.java:139) - Loaded RoutePredicateFactory [Host]
04-07-2024 17:15:26.718 INFO  [main] o.s.c.g.r.RouteDefinitionRouteLocator.lambda$initFactories$2(RouteDefinitionRouteLocator.java:139) - Loaded RoutePredicateFactory [Method]
04-07-2024 17:15:26.719 INFO  [main] o.s.c.g.r.RouteDefinitionRouteLocator.lambda$initFactories$2(RouteDefinitionRouteLocator.java:139) - Loaded RoutePredicateFactory [Path]
04-07-2024 17:15:26.719 INFO  [main] o.s.c.g.r.RouteDefinitionRouteLocator.lambda$initFactories$2(RouteDefinitionRouteLocator.java:139) - Loaded RoutePredicateFactory [Query]
04-07-2024 17:15:26.719 INFO  [main] o.s.c.g.r.RouteDefinitionRouteLocator.lambda$initFactories$2(RouteDefinitionRouteLocator.java:139) - Loaded RoutePredicateFactory [ReadBodyPredicateFactory]
04-07-2024 17:15:26.719 INFO  [main] o.s.c.g.r.RouteDefinitionRouteLocator.lambda$initFactories$2(RouteDefinitionRouteLocator.java:139) - Loaded RoutePredicateFactory [RemoteAddr]
04-07-2024 17:15:26.719 INFO  [main] o.s.c.g.r.RouteDefinitionRouteLocator.lambda$initFactories$2(RouteDefinitionRouteLocator.java:139) - Loaded RoutePredicateFactory [Weight]
04-07-2024 17:15:26.720 INFO  [main] o.s.c.g.r.RouteDefinitionRouteLocator.lambda$initFactories$2(RouteDefinitionRouteLocator.java:139) - Loaded RoutePredicateFactory [CloudFoundryRouteService]
04-07-2024 17:15:27.665 WARN  [main] o.s.c.l.c.BlockingLoadBalancerClientAutoConfiguration$BlockingLoadBalancerClientRibbonWarnLogger.logWarning(BlockingLoadBalancerClientAutoConfiguration$BlockingLoadBalancerClientRibbonWarnLogger.java:86) - You already have RibbonLoadBalancerClient on your classpath. It will be used by default. As Spring Cloud Ribbon is in maintenance mode. We recommend switching to BlockingLoadBalancerClient instead. In order to use it, set the value of `spring.cloud.loadbalancer.ribbon.enabled` to `false` or remove spring-cloud-starter-netflix-ribbon from your project.
04-07-2024 17:15:27.676 WARN  [main] o.s.c.c.l.r.ReactorLoadBalancerClientAutoConfiguration$ReactorLoadBalancerClientRibbonWarnLogger.logWarning(ReactorLoadBalancerClientAutoConfiguration$ReactorLoadBalancerClientRibbonWarnLogger.java:75) - You have RibbonLoadBalancerClient on your classpath. LoadBalancerExchangeFilterFunction that uses it under the hood will be used by default. Spring Cloud Ribbon is now in maintenance mode, so we suggest switching to ReactorLoadBalancerExchangeFilterFunction instead. In order to use it, set the value of `spring.cloud.loadbalancer.ribbon.enabled` to `false` or remove spring-cloud-starter-netflix-ribbon from your project.
04-07-2024 17:15:27.772 INFO  [main] o.s.c.netflix.eureka.InstanceInfoFactory.create(InstanceInfoFactory.java:72) - Setting initial instance status as: STARTING
04-07-2024 17:15:27.803 INFO  [main] com.netflix.discovery.DiscoveryClient.<init>(DiscoveryClient.java:365) - Initializing Eureka in region us-east-1
04-07-2024 17:15:27.943 INFO  [main] c.n.d.provider.DiscoveryJerseyProvider.<init>(DiscoveryJerseyProvider.java:70) - Using JSON encoding codec LegacyJacksonJson
04-07-2024 17:15:27.944 INFO  [main] c.n.d.provider.DiscoveryJerseyProvider.<init>(DiscoveryJerseyProvider.java:71) - Using JSON decoding codec LegacyJacksonJson
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by com.thoughtworks.xstream.core.util.Fields (file:/C:/Users/Shan/.m2/repository/com/thoughtworks/xstream/xstream/1.4.11.1/xstream-1.4.11.1.jar) to field java.util.TreeMap.comparator
WARNING: Please consider reporting this to the maintainers of com.thoughtworks.xstream.core.util.Fields
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release
04-07-2024 17:15:28.163 INFO  [main] c.n.d.provider.DiscoveryJerseyProvider.<init>(DiscoveryJerseyProvider.java:80) - Using XML encoding codec XStreamXml
04-07-2024 17:15:28.163 INFO  [main] c.n.d.provider.DiscoveryJerseyProvider.<init>(DiscoveryJerseyProvider.java:81) - Using XML decoding codec XStreamXml
04-07-2024 17:15:28.281 INFO  [main] c.n.d.s.r.aws.ConfigClusterResolver.getClusterEndpoints(ConfigClusterResolver.java:43) - Resolving eureka endpoints via configuration
04-07-2024 17:15:28.552 INFO  [main] com.netflix.discovery.DiscoveryClient.fetchRegistry(DiscoveryClient.java:976) - Disable delta property : false
04-07-2024 17:15:28.553 INFO  [main] com.netflix.discovery.DiscoveryClient.fetchRegistry(DiscoveryClient.java:977) - Single vip registry refresh property : null
04-07-2024 17:15:28.553 INFO  [main] com.netflix.discovery.DiscoveryClient.fetchRegistry(DiscoveryClient.java:978) - Force full registry fetch : false
04-07-2024 17:15:28.555 INFO  [main] com.netflix.discovery.DiscoveryClient.fetchRegistry(DiscoveryClient.java:979) - Application is null : false
04-07-2024 17:15:28.555 INFO  [main] com.netflix.discovery.DiscoveryClient.fetchRegistry(DiscoveryClient.java:980) - Registered Applications size is zero : true
04-07-2024 17:15:28.555 INFO  [main] com.netflix.discovery.DiscoveryClient.fetchRegistry(DiscoveryClient.java:982) - Application version is -1: true
04-07-2024 17:15:28.555 INFO  [main] com.netflix.discovery.DiscoveryClient.getAndStoreFullRegistry(DiscoveryClient.java:1065) - Getting all instance registry info from the eureka server
04-07-2024 17:15:28.807 INFO  [main] com.netflix.discovery.DiscoveryClient.getAndStoreFullRegistry(DiscoveryClient.java:1074) - The response status is 200
04-07-2024 17:15:28.809 INFO  [main] com.netflix.discovery.DiscoveryClient.initScheduledTasks(DiscoveryClient.java:1288) - Starting heartbeat executor: renew interval is: 30
04-07-2024 17:15:28.811 INFO  [main] c.n.discovery.InstanceInfoReplicator.<init>(InstanceInfoReplicator.java:60) - InstanceInfoReplicator onDemand update allowed rate per min is 4
04-07-2024 17:15:28.816 INFO  [main] com.netflix.discovery.DiscoveryClient.<init>(DiscoveryClient.java:465) - Discovery Client initialized at timestamp 1720093528815 with initial instances count: 0
04-07-2024 17:15:28.817 INFO  [main] o.s.c.n.e.s.EurekaServiceRegistry.register(EurekaServiceRegistry.java:41) - Registering application GATEWAY-SERVER with eureka with status UP
04-07-2024 17:15:28.818 INFO  [main] com.netflix.discovery.DiscoveryClient.notify(DiscoveryClient$3.java:1323) - Saw local status change event StatusChangeEvent [timestamp=1720093528818, current=UP, previous=STARTING]
04-07-2024 17:15:28.823 INFO  [DiscoveryClient-InstanceInfoReplicator-0] com.netflix.discovery.DiscoveryClient.register(DiscoveryClient.java:844) - DiscoveryClient_GATEWAY-SERVER/localhost:gateway-server:9000: registering service...
04-07-2024 17:15:28.890 INFO  [DiscoveryClient-InstanceInfoReplicator-0] com.netflix.discovery.DiscoveryClient.register(DiscoveryClient.java:853) - DiscoveryClient_GATEWAY-SERVER/localhost:gateway-server:9000 - registration status: 204
04-07-2024 17:15:29.337 INFO  [main] o.s.b.web.embedded.netty.NettyWebServer.start(NettyWebServer.java:89) - Netty started on port(s): 9000
04-07-2024 17:15:29.339 INFO  [main] o.s.c.n.e.s.EurekaAutoServiceRegistration.onApplicationEvent(EurekaAutoServiceRegistration.java:145) - Updating port to 9000
04-07-2024 17:15:30.036 INFO  [main] c.p.g.GatewayServerApplication.logStarted(StartupInfoLogger.java:61) - Started GatewayServerApplication in 7.91 seconds (JVM running for 10.028)
04-07-2024 17:15:58.810 INFO  [DiscoveryClient-CacheRefreshExecutor-0] com.netflix.discovery.DiscoveryClient.fetchRegistry(DiscoveryClient.java:976) - Disable delta property : false
04-07-2024 17:15:58.810 INFO  [DiscoveryClient-CacheRefreshExecutor-0] com.netflix.discovery.DiscoveryClient.fetchRegistry(DiscoveryClient.java:977) - Single vip registry refresh property : null
04-07-2024 17:15:58.810 INFO  [DiscoveryClient-CacheRefreshExecutor-0] com.netflix.discovery.DiscoveryClient.fetchRegistry(DiscoveryClient.java:978) - Force full registry fetch : false
04-07-2024 17:15:58.810 INFO  [DiscoveryClient-CacheRefreshExecutor-0] com.netflix.discovery.DiscoveryClient.fetchRegistry(DiscoveryClient.java:979) - Application is null : false
04-07-2024 17:15:58.810 INFO  [DiscoveryClient-CacheRefreshExecutor-0] com.netflix.discovery.DiscoveryClient.fetchRegistry(DiscoveryClient.java:980) - Registered Applications size is zero : true
04-07-2024 17:15:58.815 INFO  [DiscoveryClient-CacheRefreshExecutor-0] com.netflix.discovery.DiscoveryClient.fetchRegistry(DiscoveryClient.java:982) - Application version is -1: false
04-07-2024 17:15:58.815 INFO  [DiscoveryClient-CacheRefreshExecutor-0] com.netflix.discovery.DiscoveryClient.getAndStoreFullRegistry(DiscoveryClient.java:1065) - Getting all instance registry info from the eureka server
04-07-2024 17:15:58.843 INFO  [DiscoveryClient-CacheRefreshExecutor-0] com.netflix.discovery.DiscoveryClient.getAndStoreFullRegistry(DiscoveryClient.java:1074) - The response status is 200

other microservice

VinncentWong commented 2 months ago

There are 2 logs here

First one from your microservice

04-07-2024 17:15:24.017 INFO  [main] o.s.c.c.c.ConfigServicePropertySourceLocator.getRemoteEnvironment(ConfigServicePropertySourceLocator.java:249) - Fetching config from server at : http://localhost:9999
04-07-2024 17:15:24.260 INFO  [main] o.s.c.c.c.ConfigServicePropertySourceLocator.log(ConfigServicePropertySourceLocator.java:167) - Located environment: name=gateway-server, profiles=[default], label=null, version=null, state=null

Based on above, what I remember is your microservice is succes fetch the configuration from your config

The problem is from your config server

2024-07-04 17:15:10.965  INFO 20636 --- [           main] o.s.v.c.e.LeaseAwareVaultPropertySource  : Vault location [secret/application/vault] not resolvable: Not found

Your vault location is not found, so that is why no configuration is fetched

UmashankarPalanichamy commented 2 months ago

what should i configure in vault?

UmashankarPalanichamy commented 2 months ago

image image but it is able to print the data from vault

VinncentWong commented 2 months ago

image This one from your config or microservice?

UmashankarPalanichamy commented 2 months ago

from config

VinncentWong commented 2 months ago
spring:
  profiles:
    active: vault
  cloud:
    vault:
      token: hvs.sGlm5pNn4116RgvdXmjIXXHL
      host: 127.0.0.1
      port: 8200
      scheme: http
      uri: http://127.0.0.1:8200
      authentication: TOKEN
      connection-timeout: 5000
      read-timeout: 15000
      kv:
        enabled: true
        backend-version: 2
    config:
      allowOverride: true
      overrideNone: true
      overrideSystemProperties: true
      server:
        vault:
          host: ${ETL_VAULT_IP:127.0.0.1}
          port: ${ETL_VAULT_PORT:8200}
          scheme: http
          authentication: TOKEN
          token: ${ETL_VAULT_TOKEN:hvs.sGlm5pNn4116RgvdXmjIXXHL}
          backend: secret
          kv-version: 2

Can you change the ETL_VAULT_IP and ETL_VAULT_PORT and ETL_VAULT_TOKEN to directly 127.0.01 and 8200 and your token? ${} is used on @Value only from what I know

UmashankarPalanichamy commented 2 months ago

changed the same result

UmashankarPalanichamy commented 2 months ago

can we connect via meet? if possible so you can have better look?

VinncentWong commented 2 months ago

Sure, I will be preparing first, please send the meet link thank you

UmashankarPalanichamy commented 2 months ago

https://meet.google.com/opz-ynrn-ytp