作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
尝试在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/
我是一名优秀的程序员,十分优秀!