我需要公開一些靜態內容(wsdl所需的xsd文件)。我無法使用mvn:資源,因爲它在Spring 3.0.0中不可用。服務使用彈簧3.0.0和tomcat的靜態資源
我對靜態內容的去向沒有什麼想法。希望可以有人幫幫我。
在我的web.xml我有
<servlet>
<servlet-name>Resources</servlet-name>
<servlet-class>org.springframework.web.servlet.ResourceServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Resources</servlet-name>
<url-pattern>/resources/*</url-pattern>
</servlet-mapping>
然後在web應用程序目錄我添加了一個資源目錄與靜態文件。
% ls webapp
index.jsp META-INF resources WEB-INF
有人可以告訴我靜態內容應該去哪裏。
非常感謝。
基礎上以下線程http://stackoverflow.com/questions/3829369/spring-serving-static-content-with-mvcresources-invalid-xsd和http://stackoverflow.com/questions/9085964/why-does-this-spring- C onfig-file-not-resolve-the-mvcresources-element似乎不是這種情況。我收到以下錯誤。我如何在3.0.0中解決。 org.xml.sax.SAXParseException:cvc-complex-type.2.4.c:匹配的通配符是嚴格的,但是對元素'mvc:resources'沒有聲明。 – user290870