在调度程序servlet中,我将资源设置为
<mvc:resources mapping="/resources/**" location="/resources/"/>
<mvc:annotation-driven/>
但是当我使用Bootstrap添加依赖项
<dependency>
<groupId>org.webjars</groupId>
<artifactId>bootstrap</artifactId>
<version>3.3.7</version>
</dependency>
当我这样引用时,我的网页看不到
<link rel="stylesheet" href="webjars/bootstrap/3.3.7/css/bootstrap.min.css" />
如何映射我的资源在dispatcher-servlet中,以使它们看到我的Bootstrap文件夹?