I'm using Spring Boot 3.1.0 and Spring Framework 6.0.9. A keystore file is specified for JVM as follows for a JVM deployment so that the file is placed in src\main\resources\application.properties:
server.ssl.bundle: microservice
spring.ssl.bundle.jks.microservice.keystore.location: classpath:keystore.p12
But how do I specify the location for Spring Aot Processing when I don't have a classpath? Do I have to edit application.properties? Or can I use an argument when invoking the .exe file to override the property from application.properties?