在spring-mvc中使用mvc:resources导致404
在使用Spring的时候经常使用:
<mvc:resources mapping="/static/**" location="/resources/static/" />
这种形式配置静态资源。使用访问页面导致404,我们需要加上以下配置:
<mvc:annotation-driven />
在使用Spring的时候经常使用:
<mvc:resources mapping="/static/**" location="/resources/static/" />
这种形式配置静态资源。使用访问页面导致404,我们需要加上以下配置:
<mvc:annotation-driven />