2

我想将我的图像外包到 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>

没有帮助。

4

1 回答 1

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/";
于 2014-12-30T05:21:53.623 回答