1

Is it possible to add JAR files to class path of a Web app so the servlets can use latest version of classes at run time? if the answer is positive how can we do that? thanks

4

3 回答 3

2

是的,当然。WAR 可以包含 JAR。把它们放进去 WEB-INF/lib ,它就会起作用。

希望这可以帮助

于 2012-11-01T07:15:51.710 回答
1

您必须将 .jar 库放在/webproject/web/WEB-INF/lib/文件夹中。最诚挚的问候。

于 2012-11-01T07:16:34.423 回答
1

如果您使用的是 eclipse,则右键单击项目转到属性>Java 构建路径>添加外部 jar,然后选择您的 jar 文件。

于 2012-11-01T07:18:55.797 回答