apache-tomcat: Providing Additional JARs to Tomcat #221
-
I have to add a jar to tomcat's lib directory. Is there an example how to use the described feature? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
This is for other Buildpacks to add JARs. I think you could technically use it without a buildpack, but it is not the intended way to do this. As a user, you would want External Configuration. This allows you to overlay basically anything on top of the Tomcat install. Think of it as your external configuration bundle is just extracted on top of Tomcat. The example there shows config, but you could just as easily overlay a JAR file into the |
Beta Was this translation helpful? Give feedback.
This is for other Buildpacks to add JARs. I think you could technically use it without a buildpack, but it is not the intended way to do this.
As a user, you would want External Configuration. This allows you to overlay basically anything on top of the Tomcat install. Think of it as your external configuration bundle is just extracted on top of Tomcat. The example there shows config, but you could just as easily overlay a JAR file into the
lib/
directory.