My project using application.yml to store properties.
spring:
profiles: local
kerberos:
truststore:
key: truststore.jks
file: kafkatool-qa\\truststore.jks
keytab:
key: krb5.keytab
file: kafkatool-qa\\krb5.keytab
The truststore and krb5.keytab are located at "C:\Users\Documents\producers\kafkatool-qa\krb5.keytab". producers\ is my project directory.
When I run the app locally, it can located the 2 files and works. But when I run this app on cloud foundry. It cannot located the file.
Is there anyway to let the app address the krb5.keytab and truststore.jks when it runs on cloud foundry?