<action name="attachment_*" class="attachmentAction"method="{1}">
<result name="download" type="stream">//就是这个type 是什么意思 ,这是一个下载的action
<param name="contentType">${contentType}</param>
<param name="inputName">${inputName}</param>
<param name="contentDisposition">
${contentDisposition}
</param>
<param name="bufferSize">4096</param>
</result>
---------------------------------------------------------------
type="chain" 不建议
type="dispatcher" 一般的资源
type="freemarker" Freemarker模板
type="velocity" Velocity模板
type="xslt" XSLT模板
type="httpheader" 添加状态到Http头
type="redirect" 重定向
type="redirect-action" 重定向到Action
type="plaintext" 把原始内容输出(如jsp和html的原始内容)
type="stream" 把一般内容输出到流
<result name="download" type="stream">//就是这个type 是什么意思 ,这是一个下载的action
<param name="contentType">${contentType}</param>
<param name="inputName">${inputName}</param>
<param name="contentDisposition">
${contentDisposition}
</param>
<param name="bufferSize">4096</param>
</result>
---------------------------------------------------------------
type="chain" 不建议
type="dispatcher" 一般的资源
type="freemarker" Freemarker模板
type="velocity" Velocity模板
type="xslt" XSLT模板
type="httpheader" 添加状态到Http头
type="redirect" 重定向
type="redirect-action" 重定向到Action
type="plaintext" 把原始内容输出(如jsp和html的原始内容)
type="stream" 把一般内容输出到流
本文详细解析了Struts2框架中实现文件下载的Action配置方法,重点介绍了使用type=stream来处理文件流的过程及参数设置。通过具体示例说明如何通过contentType、inputName等属性正确配置下载Action。
103

被折叠的 条评论
为什么被折叠?



