项目使用了Spring框架,在applicationContext.xml中引用了资源文件,代码如下:
    <bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location">
<value>classpath:myProperty.properties</value>
</property>
    </bean>    myProperty.propertyies中定义了文件上传路径,如下所示:
    file.upload.root=/usr/myproject/upload    JDK、JRE、Tomcat均以搭建好,项目war包也已放入Tomcat的webapps文件夹下,我的问题是:现在不能上传文件到/usr/myproject/upload目录下,请教各位还应该做些什么配置?谢谢!