这是哪里配置错了还是缺少什么东西啊?

图片不能正常显示
web.xml文件中
<servlet>
    <servlet-name>crm</servlet-name>
    <servlet-class>
        org.springframework.web.servlet.DispatcherServlet
    </servlet-class>
    <init-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>classpath:springmvc-config.xml</param-value>
    </init-param>

springmvc-config.xml中

<mvc:resources mapping="/js/**" location="../js/"/>
<mvc:resources mapping="/css/**" location="../css/"/>
<mvc:resources mapping="/fonts/**" location="../fonts/"/>
<mvc:resources mapping="/images/**" location="../images/"/>
<mvc:resources location="/boostrap/" mapping="/boostrap/**"/>

错误码为GET http://localhost:8080/images/login-8.jpg 404 (Not Found)
正常显示图片和其他配置

这样看不出来,你对应目录下有这个图片文件吗