我在哪里将图像放在文件系统上以供Spring MVC访问?

时间:2014-01-17 09:12:50

标签: spring-mvc

enter image description here

我的spring-servlet.xml文件是

<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:p="http://www.springframework.org/schema/p"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       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/>
  <context:component-scan base-package="org.infopad.controllers"></context:component-scan>

  <mvc:resources mapping="/static/**" location="/static/images/, /static/css/" />

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

<bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
      <property name="basename" value="/WEB-INF/messages" />
</bean>     
</beans>

我在哪里放置图像和css文件以及如何在HTML / JSP页面中访问它们?

我正在使用Spring 3.0.3。

1 个答案:

答案 0 :(得分:0)

将图片放入WebContent/static/images/

根据您的映射,可以通过网址WebContent/static/images/somepic.png

访问YOUR_WEB_CONTEXT/static/somepic.png

css文件也是如此。