在jsp中编写java有性能差异吗?
通过将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
两者应该是等效的,因为您在 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.