我有一个应用程序,用户可以在其中输入一些信息和图像,所以首先我将图像保存在数据库中,但我认为这不是一个好的做法,而且在部署应用程序时需要付出代价。所以我想在文件系统上保存图像,我读到我们不应该将它们保存在应用程序中,所以我想将它们保存在文件系统的外部文件夹中。我在E:/ images文件夹中选择它们,它运行良好。我的问题是我可以在生产应用程序中保存图像(不会有E:/ images),如何在部署应用程序的服务器上创建文件夹,如何在控制器中提及而不是(E:/图像)。我正在使用Spring MVC。 我的控制器在这里:
@RequestMapping(value="/save",method=RequestMethod.POST)
public String add ( @RequestParam("prix") Long prix,
RequestParam("adresse") String ville,
@RequestParam("categorie") String categorie,
@RequestParam("photos") MultipartFile file,
) throws FileNotFoundException
{
String chemin=null;
if (!file.isEmpty())
{
try {
String orgName = file.getOriginalFilename();
// this line to retreive just file name
String
name=orgName.substring(orgName.lastIndexOf("\\")+1,orgName.length());
chemin="e:\\images\\"+name;
File file1=new File(chemin);
file.transferTo(file1);
} catch (IOException e) {
e.printStackTrace();
}
}
annonce.setImage(chemin);
annonce.setTitre(prix);
annonce.setCorps(ville);
annonce.setPrix(cetegorie)
annoncedao.save(annonce);
return "SuccessAddAnnonce";
}
答案 0 :(得分:0)
不要在代码中使用硬编码文件路径。使用属性文件并将其提供给生产团队。因此,无论何时在生产中部署应用程序,只需在属性文件中更改要保存文件的文件路径。
答案 1 :(得分:0)
在类路径中添加somename.property文件。在其中添加以下行:
imagepath=e:\\images;
现在,您在spring配置文件中为属性文件创建一个bean,如下所示。
<bean id="projectProperties" class="org.springframework.beans.factory.config.PropertiesFactoryBean">
<property name="locations">
<list>
<value>classpath*:somename.properties</value>
</list>
</property>
</bean>
现在在你的控制器中,添加bean:
@Resource(name="projectProperties")
private Properties projectProperties;
现在改变你的行:
chemin=projectPropertiesProperties.getProperty("imagepath")+name;