jsp include tag vs struts include action?

发布于 2024-11-18 08:09:54 字数 120 浏览 0 评论 0原文

struts include 操作包含由参数属性指定的上下文相关 URI。 jsp include 标签也能做到这一点。那么,普通的jsp include tag ie和struts include action有什么区别呢?

struts include action include the context-relative URI specified by the parameter attribute. and jsp include tag also does that. So,whats the difference between normal jsp include tag i.e and struts include action?

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

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

发布评论

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

评论(1

小ぇ时光︴ 2024-11-25 08:09:54

直接来自文档

这可以用来集成Struts
与其他业务逻辑组件
作为 servlet 实现(或
JSP 页面),但仍然可以利用
Struts 控制器 servlet 的
功能(例如处理
形成豆)

表单验证、授权等。这在包含 URI 之前(或之后,对于异常处理)可能很有用。

但如果您从头开始启动 Struts 应用程序,则不必使用它。当您已经有一个 servlet 并希望将其包含在 STruts 应用程序中而不使用 Struts 重写它时,它非常有用。

Right from the documentation:

This can be used to integrate Struts
with other business logic components
that are implemented as servlets (or
JSP pages), but still take advantage
of the Struts controller servlet's
functionality (such as processing of
form beans)

Struts is a front controller, that handles form bean population, locale detection, exception handling, form validation, authorization, etc. This might be useful to do before including the URI (or after, for exception handling).

But if you start a Struts application from scratch, you shouldn't have to use it. It's useful when you already have a servlet and want to include it inside a STruts application without rewriting it using Struts.

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