如何使用tomcat服务器使json在jsp页面中工作?
我已经下载了 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
与往常一样,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 inTomcat/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.