为什么在struts中使用
为什么在struts中使用而不是?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web
技术交流群。
为什么在struts中使用
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
来自 bean:include 的文档
执行对指定应用程序组件(或外部 URL)的内部调度,并使来自该请求的响应数据可用作 String 类型的 bean。该标记的功能与标准 jsp:include 标记的功能类似,只不过响应数据存储在页面范围属性中而不是写入输出流。如果当前请求是会话的一部分,则生成的包含请求也将包括会话标识符(因此是同一会话的一部分)。
第一次在谷歌上点击
from the documentation for bean:include
Perform an internal dispatch to the specified application component (or external URL) and make the response data from that request available as a bean of type String. This tag has a function similar to that of the standard jsp:include tag, except that the response data is stored in a page scope attribute instead of being written to the output stream. If the current request is part of a session, the generated request for the include will also include the session identifier (and thus be part of the same session).
first hit on google
bean:include 的工作方式几乎与 jsp:include 相似,只是结果存储在页面范围内。这意味着当前页面上的代码可以访问结果并对其进行操作。 查看此页面。
bean:include works almost like jsp:include except that the result is stored in the page scope. This means that your code on the current page can access the results and manipulate it. See this page.