Spring资源mvc标签问题

时间:2014-07-08 07:37:39

标签: java spring maven

我正在使用spring maven hibernate。我在调度程序servlet文件中添加资源mvc标记时出错。要添加css和图像文件,我必须使用资源标记添加我的文件夹,因为我添加了xmlns mvc及其模式位置。但它不起作用。下面我正在添加我的代码。当我从中移除mvc和资源时,它正在工作。

请帮忙。

<beans
 xmlns="http://www.springframework.org/schema/beans"
 xmlns:mvc="http://www.springframework.org/schema/mvc"
 xmlns:context="http://www.springframework.org/schema/context"
 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/mvc 
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<!-- Enable annotation driven controllers, validation etc... -->
 <import resource="classpath:ApplicationContext.xml"/>

<context:component-scan base-package="com.org.rolltickets" />

<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix"><value>/views/</value></property>
<property name="suffix"><value>.jsp</value></property>
</bean>

<bean id="appUserDao"  class="com.org.rolltickets.publicapp.dao.impl.AppUserDaoImpl" >
<property name="sessionFactory">
<ref bean="sessionFactory" />
</property>
</bean>

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

我的图片文件夹位于webapp / images和css webapp / css中。文件夹不在maven的资源文件夹中。如何将这些外部文件夹添加为资源?

0 个答案:

没有答案