This repository has been archived by the owner on Jul 27, 2023. It is now read-only.
java-microprofile should support JEE JCA connection pools #539
Labels
stack/java-openliberty
Issues related to java-openliberty stack
Is your feature request related to a problem? Please describe.
Currently, there is no support mechanism for placing JDBC/JMS/J2C drivers into the container image, which means one cannot declare connection pools in server.xml because they need to access the non-existent driver files during runtime.
Describe the solution you'd like
A supported mechanism for placing these types of JAR files in the container image in a location accessible via server.xml, e.g.:
Describe alternatives you've considered
There is a workaround based on using the Maven Resource Plugin to place the driver files in a strategic location of the build tree, from where they get picked up during
appsody build
. Note that this strategic location is gleaned from inside-knowledge of the current stack Dockerfile, currently:${basedir}/target/liberty/wlp/usr/servers/defaultServer/resources/
Additional context
Add any other context or screenshots about the feature request here.
#521
The text was updated successfully, but these errors were encountered: