是Spring Framework的新手。我正在尝试使用spring创建一个测试应用程序。视图运行正常,但在我的JSP上我无法使用静态内容。 即使我试图直接访问它们,它们也不会打开。 我尝试过在网上找到的所有解决方案。 请告诉我,如果我遗失了什么。
这是我的springmvc-servlet.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
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">
<mvc:annotation-driven/>
<mvc:resources mapping="/resources/**" location="/"/>
<context:component-scan base-package="com.portal"/>
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/jsp/" />
<property name="suffix" value=".jsp" />
</bean>
</beans>
以下是我的web.xml条目
<servlet>
<servlet-name>springmvc</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>springmvc</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<servlet>
我有一些静态文件位于
/src/static/img/apple-touch-icon.png
/src/static/css/bootstrap.css
/src/static/css/bootstrap.min.css
/src/static/css/styles.css
/src/index.html
但是当我输入网址
时http://localhost:8080/springdemo/index.html
或
http://localhost:8080/springdemo/static/img/apple-touch-icon.png
显示404. :(
另外
<link rel="apple-touch-icon" href="/springdemo/static/img/apple-touch-icon.png">
或
<link rel="apple-touch-icon" href="http://localhost:8080/springdemo/static/img/apple-touch-icon.png
&#34;&GT;
无效。
请帮助我,因为我刚开始学习Spring。
答案 0 :(得分:0)
首先,您必须将静态内容放在 WEB-INF 文件夹中 并且您已映射资源
<mvc:resources mapping="/resources/**" location="/"/>
表示&#34; WEB-INF / resources /&#34;中的任何文件。可用&#34; /&#34;。例如,如果您在资源中有一些图像
/WEB-INF/resources/static/image/icon.png
可以通过
访问<link href="${pageContext.request.contextPath}/static/icon.png" ....>