客户端的jvm在运行servlet方面有什么作用吗?
我很困惑。
客户端的jvm有什么作用来运行servlet吗?如果有请讨论一下。
如果没有,servlet 的 .class
文件如何设法运行?
I am confused.
Is there any role , the jvm of client plays to run the servlet ? If it does please discuss it.
If it doesn't how does the servlet's .class
file manage to run ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,客户端上的 Java 与运行 servlet 没有任何关系(否则 servlet 对于 iPad 客户端来说就没用)
服务器有自己的 JVM 来运行 servlet,除了显示结果 HTML 的浏览器之外,不涉及任何客户端代码。
No, Java on the client has nothing whatsoever to do with running servlets (otherwise servlets would be useless for iPad clients for example)
The server has its own JVM which runs the servlet, no client side code involved except the browser that displays the resulting HTML.