We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When having the following property:
application.yaml:
application.yaml
server.port: ${greeting-service.port}
The generated resource is always setting the port to 8080:
name: spring-boot-istio-distributed-tracing-greeting-service ports: - containerPort: 8080 name: http protocol: TCP
However, when having the same properties in a application.properties file, everything works fine:
application.properties
application.properties:
server.port=${greeting-service.port}
Note that we're using the resources Maven plugin to filter these resources:
resources
<build> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources> </build>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When having the following property:
application.yaml
:The generated resource is always setting the port to 8080:
However, when having the same properties in a
application.properties
file, everything works fine:application.properties
:Note that we're using the
resources
Maven plugin to filter these resources:The text was updated successfully, but these errors were encountered: