将 JSF-Tomahawk 库添加到 Eclipse
我一直在尝试将 tomahawk 库添加到 JSF 应用程序中。 我点击项目->构建路径->图书馆 ->添加外部罐子。 但是当我尝试部署时,出现一条消息,指出没有 t 的标记库。
那么,添加库的正确方法是什么?
I've been trying to add tomahawk library to a JSF app.
I click on project -> BuildPath -> Libraries -> Add external Jars.
But when I try to deploy there's a message that says that there's no taglib for t.
So, what's the correct way of adding a library?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
添加特定于 Web 应用程序的库的正确方法是将 JAR 文件放入
/WEB-INF/lib
中。就这样。 Eclipse 足够智能,可以检测/WEB-INF/lib
中的更改,并自动采取适当的操作。您确实不需要摆弄项目属性中的构建路径。这可能会让事情变得更糟。撤消您在构建路径中所做的所有更改。The correct way of adding webapp-specific libraries is just dropping the JAR files in
/WEB-INF/lib
. That's all. Eclipse is smart enough to detect changes in the/WEB-INF/lib
and will take appropriate actions automagically. You really don't need to fiddle with Build Path in project's properties. It would possibly make things worse. Undo all changes which you made in the Build Path.这些库也是您的 web-inf/lib 的一部分吗?
Are the libraries also part of your web-inf/lib ?