我写了以下弹簧控制器:
@RequestMapping(method = RequestMethod.GET, value = "/getVideoIcon")
@ResponseBody
public FileSystemResource getVideoIcon() throws IOException {
return new FileSystemResource(new File("/resources/images/video_icon.png"));
}
该文件位于src\main\webapp\resources\images
当我调用控制器时,我得到以下错误:
HTTP Status 500 - resources\images\video_icon.png (The system cannot find the path specified)
请帮助纠正我的错误。
答案 0 :(得分:5)
如果您需要获取原始项目的路径,则应使用getServletContext().getRealPath
@RequestMapping(method = RequestMethod.GET, value = "/getVideoIcon")
@ResponseBody
public FileSystemResource getVideoIcon(HttpServletRequest request) throws IOException {
String path = request.getSession().getServletContext().getRealPath("/resources/images")+"/video_icon.png";
return new FileSystemResource(new File(path));
}
如果需要检查path
变量的含义,请在return语句前使用System.out.println(path);
。如果您在尝试上述代码后仍然遇到错误消息,请随时询问..
答案 1 :(得分:3)
您不需要编写控制器来支持Spring应用程序中的静态资源。
将其添加到Spring xml配置中:
<mvc:resources mapping="/image/**" location="/resources/images/" />
在JSP页面中,您可以像这样使用它:
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<img src="<c:url value="/image/video_icon.png" />" />