映射到外部映像文件夹不起作用(<mvc:resources>)</mvc:resources>

时间:2013-03-18 14:45:39

标签: spring-mvc resources servlet-mapping

我想将我的图像外包到spring项目文件夹之外。经过一些研究,我找到了mvc:resources标签,这似乎是我要求的完美解决方案。

应用-servlet.xml中

xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/mvc
                http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">

<mvc:annotation-driven/>
<mvc:resources mapping="/pics/**" location="file:/c:/Tomcat_6/webapps/external_resources/" order="0" />

JSP调用:

<img src="<c:url value="/pics/test.png"/>" />

我不知道为什么这对我不起作用。

几个小时后,我读到删除以下行将解决问题,但什么也没发生。

<bean id="viewMappings" class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
    <property value="true" name="alwaysUseFullPath"></property>
    <property name="defaultHandler">    
        <bean class="org.springframework.web.servlet.mvc.UrlFilenameViewController" />
    </property>
    <property name="order" value="1"/>
</bean>

同时改变

<servlet-mapping>
    <servlet-name>onlinecatalog</servlet-name>
    <url-pattern>*.htm</url-pattern>
</servlet-mapping>

<servlet-mapping>
    <servlet-name>onlinecatalog</servlet-name>
    <url-pattern>/</url-pattern>
</servlet-mapping>

没有帮助。

1 个答案:

答案 0 :(得分:1)

你可以使用这样的基于java的配置(在linux中)

@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
String rootPath = System.getProperty("user.home"); 
String imagePath = "file:"+rootPath + File.separator + "tmpFiles/"; //absolute path of the directory
System.out.println(imagePath);
registry.addResourceHandler("/resources/**").addResourceLocations("resources/");
registry.addResourceHandler("/tmpFiles/**").addResourceLocations(imagePath);

}

现在您可以从tmpFiles文件夹访问外部文件。 在Windows中,您可能需要将imagePath作为

imagePath="file:c:/Tomcat_6/webapps/external_resources/";