Meu application.properties:
server.port=8888
spring.profiles.active=native
spring.cloud.config.server.git.uri=https://github.com/NewtonJoaquim/microservice-repo
spring.cloud.config.server.git.searchPaths=fornecedor
Meu repositório do git: https://github.com/NewtonJoaquim/microservice-repo
Quando rodo o endpoint http://localhost:8888/fornecedor/default
ele retorna:
{
"name": "fornecedor",
"profiles": [
"default"
],
"label": null,
"version": null,
"state": null,
"propertySources": []
}
Alguém pode me ajudar ?