我从这个链接下载源代码
https://www.onlinetutorialspoint.com/spring/spring-mvc-login-form-example.html
https://www.onlinetutorialspoint.com/wp-content/plugins/download-attachments/includes/download.php?id=206
我可以很好地运行它,我想包括引导程序的css项目。在这个项目中,他们设置配置:<resources mapping="/resources/**" location="/resources/" />
我尝试将bootstrap.css添加到resources文件夹并将其包含在jsp文件的head标记中。但它无法读取css文件。
<link href="<c:url value="/resources/bootstrap.min.css" />" rel="stylesheet">
我将css添加到/webapp/resources文件夹。
下面是我的项目文件结构。
我的源代码有什么问题?
2条答案
按热度按时间q8l4jmvw1#
缺省情况下,此资源文件夹位于main(main/resources)文件夹下。因此,请将bootstrap. min. css文件移到main/resources中。
kuuvgm7e2#
最后,我把spring mvc从3.x版改成了4版,它成功了。