我遇到了IntelliJ和Spring mvc的问题。当我添加到spring-config.xml
时,IntelliJ无法解析位置/ webjars /(在我的项目中称为todo-servlet.xml
)。我尝试使用bootstrap和jQuery。
我使用的映射:
<mvc:resources mapping="/webjars/**" location="/webjars/"/>
我也试过
<mvc:resources location="classpath:/META-INF/resources/webjars/" mapping="/webjars/**"/>
但这也不起作用...... IntelliJ没有看到位置。
以下是GitHub上该项目的链接:My GitHub Project ToDoList
这可能与此处的问题相同:IntelliJ IDEA: Webjars / Maven / Spring MVC - How to correctly import dependencies and have them work?
它已经解决但没有人留下解决方案..