Mail.jar and mysql-connector-java-5.1.13-bin.jar Classpath
I am trying to instal开发者_运维技巧l a Java Servlets based web application on a public server. The application demands that I place the mail.jar file and mysql-connector-java-5.1.13-bin.jar file in my jdk/jre/lib/ext path. But I do not have access to this folder. Is there some other standard place where I can copy these files ?
Logically, it should not be necessary to place them there. If your application needs them, it should suffice to place them in WEB-INF/lib inside your webapp. That is the standard place for your app specific libraries.
精彩评论