gpt4 book ai didi

java - 无法找到 'struts.multipart.saveDir' 属性设置。默认为 javax.servlet.context.tempdir

转载 作者:行者123 更新时间:2023-12-01 06:47:19 26 4
gpt4 key购买 nike

尝试在struts2中上传图像时图片未上传并显示以下消息 找不到 struts.multipart.saveDir 属性设置。默认为 javax.servlet.context.tempdir

如何解决这个问题

最佳答案

您能否显示您正在使用的代码,因为这总是有帮助的。您需要指定

struts.multipart.saveDir=

将 struts.xml 文件中的属性作为常量条目,或者您需要在 struts.properties 文件中指定该属性,选择权完全由您决定。

struts.multipart.saveDir - The directory where the uploaded files will be placed. If this property is not set it defaults to javax.servlet.context.tempdir.

您的帖子就是这种情况,因为您没有自己指定位置,因此 struts2 正在选择文件上传的临时位置。

这是定义详细信息的链接 File Upload

编辑struts.xml

<struts>
<constant name="struts.multipart.saveDir" value="location of your choice" />
...
</struts>

PS:您的接受率似乎很低/未定义。为了获得帮助,始终建议您接受答案(如果它可以帮助您解决问题)

关于java - 无法找到 'struts.multipart.saveDir' 属性设置。默认为 javax.servlet.context.tempdir,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7297936/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com