java - 如何在spring MVC中获取应用程序路径

标签 java spring spring-mvc

我在一个 spring mvc 项目中工作,它上传一个图像并保存在需要在项目中使用的项目文件夹中作为 . 图像文件成功到达 Controller ,但我无法将文件保存在 WebContent 目录中。

非常感谢您的帮助。 问候 Hari。

项目类

public class Item extends WebKinmelObject {
private String name;
private double price;
private String manufacturer;
private String description;
private String category;
private String imagePath;
private int quantity;
@Temporal(value=TemporalType.TIMESTAMP)
private Date addedDate;

public String getCategory() {
    return category;
}
public void setCategory(String category) {
    this.category = category;
}
public String getManufacturer() {
    return manufacturer;
}
public void setManufacturer(String manufacturer) {
    this.manufacturer = manufacturer;
}
public String getDescription() {
    return description;
}
public void setDescription(String description) {
    this.description = description;
}
private MultipartFile file;
public MultipartFile getFile() {
    return file;
}
@Transient
public void setFile(MultipartFile file) {
    this.file = file;
}
public String getName() {
    return name;
}
public void setName(String name) {
    this.name = name;
}
public double getPrice() {
    return price;
}
public void setPrice(double price) {
    this.price = price;
}
public String getImagePath() {
    return imagePath;
}
public void setImagePath(String imagePath) {
    this.imagePath = imagePath;
}
public int getQuantity() {
    return quantity;
}
public void setQuantity(int quantity) {
    this.quantity = quantity;
}
public Date getAddedDate() {
    return addedDate;
}
public void setAddedDate(Date addedDate) {
    this.addedDate = addedDate;
}

我的 Controller 是这样的。

@RequestMapping("admin/addItemAction")
public ModelAndView addItemAction(@ModelAttribute("item")Item formItem,HttpServletRequest req){
    MultipartFile uploadedFile=formItem.getFile();
    if(uploadedFile!=null){
        String fileName=uploadedFile.getOriginalFilename();
        try {
            //-- if uploaded file is empty
            if(fileName!=""){
                //String imagePath="/Users/hari/Documents/workspace/WebKinmel/WebContent/resources/upload/"+fileName;
                String imagePath="/Users/hari/git/local_WebKinmel/WebKinmel/WebContent/resources/upload/"+fileName;
                File f=new File(imagePath);
                formItem.setImagePath("/WebKinmel"+imagePath.substring(imagePath.indexOf("/resources")));
                formItem.setFile(null);
                FileOutputStream fos=new FileOutputStream(f);
                fos.write(uploadedFile.getBytes());
                fos.flush();
                fos.close();
                f.createNewFile();
            }
        } catch (IOException e) {
            e.printStackTrace();
            System.out.println("==>>The uploaded file cound not be saved");
        }
    }
    if(formItem.isPersisted()){

        // to be done if no image
        String fileName=uploadedFile.getOriginalFilename();
        if(fileName==""){
            Item i=(Item) WebKinmelServiceManager.find(formItem.getId(), Item.class);
            formItem.setImagePath(i.getImagePath());//transferring old image path if no image path found
        }
        Date date=new Date();
        formItem.setAddedDate(date);
        WebKinmelServiceManager.update(formItem);
    }
    else{
        Date date=new Date();
        formItem.setAddedDate(date);
        WebKinmelServiceManager.save(formItem);
    }
    System.out.println("object"+formItem+" saved");
    ModelAndView mav=new ModelAndView("admin/adminItem");
    addItemContent(mav);
    mav.addObject("recent", formItem);
    return mav; 

}

我想将图像保存在 WebContent 目录中而不是保存在 '/Users/hari/git/local_WebKinmel/WebKinmel/WebContent/resources/upload/'目录

我的 servlet xml 是这样的

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
    http://www.springframework.org/schema/beans     
    http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
    http://www.springframework.org/schema/context 
    http://www.springframework.org/schema/context/spring-context-3.0.xsd
    http://www.springframework.org/schema/mvc
    http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">

<mvc:annotation-driven />
<mvc:resources mapping="/resources/**" location="/resources/" />

<context:component-scan base-package="com.hari.controller" />

<bean id="viewResolver"
    class="org.springframework.web.servlet.view.InternalResourceViewResolver">
    <property name="viewClass"
        value="org.springframework.web.servlet.view.JstlView"></property>
    <property name="prefix">
        <value>/WEB-INF/jsp/</value>
    </property>
    <property name="suffix">
        <value>.jsp</value>
    </property>

</bean>
<bean id="multipartResolver"
    class="org.springframework.web.multipart.commons.CommonsMultipartResolver"/>

<bean name="webkinmelProperties" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
    <property name="locations">
            <value>classpath*:webkinmel.properties</value>
    </property>
</bean>

最佳答案

作为Shailendra说过,您可以使用 ServletContext 获取上下文的真实路径。获取 ServletContext 的最简单方法是在 Controller 类中自动处理它。例如:

    @Controller
    @RequestMapping("/")
    public class ExampleController{

        @Autowired
        ServletContext context;

    }

之后,您可以在 Controller 的方法中使用 context.getRealPath("/") 来获取应用上下文的根路径。但是,同样,作为Shailendra说,最好使用专用的外部文件夹而不是 exploded war 的文件夹。

我建议您使用所需路径在 webkinmel.properties 文件中添加属性:

webcontent.path=/Users/hari/git/local_WebKinmel/WebKinmel/

并在你的 Controller 中使用 Spring 注入(inject)的这个属性:

@Controller
public class ControllerClass{

  @Value("${webcontent.path}")
  private String webcontentPath;

  ...
}

或者另一种方法是在配置 xml 中传递属性:

<bean name="myController" class="ControllerClass">
  <property name="webcontentPath" value="${webcontent.path}"/>
</bean>

要使浏览器可以访问文件夹,只需在配置 xml 中添加:

<mvc:resources mapping="/web/**" location="file:${webcontent.path}"/>

例如,您将文件 hello.png 保存到 /Users/hari/git/local_WebKinmel/WebKinmel/。它可以通过 url http://yourhost:8080/web/hello.png

访问

关于java - 如何在spring MVC中获取应用程序路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34114564/

相关文章:

java - HTTP 状态 400 - 必需的字符串参数 'walletName' 不存在

Java 组件隐藏在 JPanel 中

java - 第一次尝试设置测试数据库但得到 com.mysql.jdbc.exceptions.jdbc4.CommunicationsException : Communications link failure

java - 使用 MyBatis 动态列名与 where 子句中的值进行比较

java - Spring Security Web 检查当前经过身份验证的用户是否具有角色

java - 如何在Spring MVC中正确使用外部文件?

javascript - ADF 中的浏览器事件关闭

java - 如何远程调试java应用程序并将端口转发到虚拟机?

spring - 请求未在使用嵌入式 tomcat 的 spring boot 中映射

spring - 找不到依赖项的 [org.hibernate.SessionFactory] ​​类型的匹配 bean