在jsp中编写java有性能差异吗?

发布于 2024-10-12 00:52:39 字数 84 浏览 0 评论 0原文

通过将 jsp 页面嵌入到 html(如 php 和 asp.net)中来编写 java,与使用控制器类和使用 JSP 页面呈现数据之间是否存在性能差异?

Is there a performance difference between writing java inside jsp pages by embedding them in html (like php, and asp.net) -and- using controller classes and using the JSP page to render the data?

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

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

发布评论

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

评论(1

指尖微凉心微凉 2024-10-19 00:52:39

两者应该是等效的,因为您在 JSP(我的意思是 scriptlet)中编写的所有内容都被转换为 servlet 类,因此它将是等效的。当然,区别在于生成的代码和您手动编写的代码的质量。

但是,不建议再使用基于 scriptlet 的 JSP,您应该使用带有无 scriptlet JSP 和 servlet 控制器的 MVC 方法。

Both should be equivalent, since everything you wrote in a JSP (scriptlets I mean) is translated into a servlet class, so it will be equivalent. Of course the difference will be in the quality of the generated code and the code you manually wrote.

However, it's not recommended to use scriptlet based JSPs anymore, you should use an MVC approach with scriptletless JSP and servlet controllers.

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