在 JSP 上使用第 3 方 Java 库

发布于 2024-11-19 07:26:08 字数 99 浏览 2 评论 0原文

如何在 JSP 上使用 Twitter4J 等第三方库?

How can I use 3rd party libraries like Twitter4J on JSP?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

酒儿 2024-11-26 07:26:08

这有点恶心,但是您不能在 JSP 中内联适当的 Java 吗?

<%
   // This should really be in a servlet
   // Twitter4J code from their example 
   Twitter twitter = new TwitterFactory().getInstance();
   List<Status> statuses = twitter.getFriendsTimeline();
   System.out.println("Showing friends timeline.");
   for (Status status : statuses) {
       System.out.println(status.getUser().getName() + ":" +
                        status.getText());
   }
%>

确保 Twitter4J jar 及其所有依赖项位于 WEB-INF/lib/ 文件夹中。然后,认真考虑一下如果可能的话不要在 JSP 中这样做!

It's a bit sick, but can you not just inline the appropriate Java in your JSP?

<%
   // This should really be in a servlet
   // Twitter4J code from their example 
   Twitter twitter = new TwitterFactory().getInstance();
   List<Status> statuses = twitter.getFriendsTimeline();
   System.out.println("Showing friends timeline.");
   for (Status status : statuses) {
       System.out.println(status.getUser().getName() + ":" +
                        status.getText());
   }
%>

Make sure that the Twitter4J jar and all its dependencies are in your WEB-INF/lib/ folder. Then, give some serious thought to not doing this in a JSP if at all possible!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文