如何使用tomcat服务器使json在jsp页面中工作?

发布于 2024-10-05 08:20:16 字数 121 浏览 4 评论 0原文

我已经下载了 json 库,我的 jsp 页面位于 tomcat/webapps/star/index.jsp 中。

那么我应该在哪里提取 json 库以便 index.jsp 中包含的 json 代码可以工作?

I have downloaded json library , and my jsp pages are in tomcat/webapps/star/index.jsp .

So where should I extract the json libraries so that the json code contained in index.jsp works ?

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

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

发布评论

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

评论(1

緦唸λ蓇 2024-10-12 08:20:16

与往常一样,JAR 风格的第 3 方库应位于 Webapp/WEB-INF/lib 文件夹中。该文件夹位于 web 应用程序的默认运行时类路径中。如果您想在同一服务器上的多个 Web 应用程序之间共享相同的库,请将其放入 Tomcat/lib 文件夹中。


顺便说一句,此类 JSON 库仅将 Java 对象转换为 JSON 字符串,反之亦然。它们与 JSP 端的 JSON 完全无关。 JavaScript 负责这部分。

As usual, 3rd party libraries in JAR flavor should go in Webapp/WEB-INF/lib folder. This folder is taken in the webapp's default runtime classpath. If you'd like to share the same libs among multiple webapplications on the same server, then rather drop it in Tomcat/lib folder.


By the way, such JSON libraries only converts Java objects to JSON strings and vice versa. They have completely nothing to do with JSON in the JSP side. It's JavaScript who's responsible for that part.

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