包括spring web mvc中的静态资源不起作用

时间:2018-05-21 19:49:52

标签: spring-mvc

无法在html文件中获取背景图片。我的代码出了什么问题?

directory

controller code

html code

web.xml

enter image description here

output

2 个答案:

答案 0 :(得分:1)

尝试替换

<mvc:resources location="/WEB-INF/**" mapping="/WEB-INF/"/>

在spring-dispatch-servlet.xml文件中,代码如下。

<mvc:resources location="/" mapping="/resources/**"/>

答案 1 :(得分:1)

在WEB-CONTENT

中的WEB-INF文件夹外创建一个静态文件夹
<mvc:resources mapping="/static/**" location="/static/"
    cache-period="31556926"/>