папка webjar не создана в указанном месте - PullRequest
0 голосов
/ 24 января 2019

привет, я использую Spring MVC 4.0 с чванством и webjars, но мой Папка webjars не создается в том месте, где я указал в applicationContext.xml. enter image description here Что мне здесь не хватает?

Зависимость следующим образом

            <dependency>
                <groupId>io.springfox</groupId>
                <artifactId>springfox-swagger-ui</artifactId>
<!--                <scope>compile</scope> -->
                <version>${springfox-swagger-ui.version}</version>
            </dependency>
            <dependency>
                <groupId>io.springfox</groupId>
                <artifactId>springfox-swagger2</artifactId>
<!--                <scope>compile</scope> -->
                <version>${springfox-swagger-ui.version}</version>
            </dependency>
            <dependency>
                <groupId>org.webjars</groupId>
                <artifactId>bootstrap</artifactId>
                <version>${org.webjars.version}</version>
             </dependency>

<mvc:resources mapping="/webjars/**" location="classpath:/META-INF/resources/webjars/"/>
<mvc:resources mapping="/swagger-ui.html" location="classpath:/META-INF/resources/swagger-ui.html"/>
...