尝试了还是不行的原因,你可能在mvc的xml文件中没有引入mvc的配置:
(我的是这个文件:applicationContext-mvc.xml)
1、xmlns:mvc="http://www.springframework.org/schema/mvc"
2、xsi:schemaLocation=“http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd”
3、<mvc:annotation-driven /><!--启动注解驱动 -->
<mvc:resources location="/imgages/" mapping="/imgages/**"/>
<mvc:resources location="/js/" mapping="/js/**"/>
<mvc:resources location="/css/" mapping="/css/**"/>
如此之后,我的就可以了。希望让更多的的人看到
PS:我的项目是Maven构建的Spring+SpringMVC+MyBatis
贴上图片,看的更直观些
HTML调用不了css,可以对照以下3种方式进行解决:第一种:行间内<div style="width:100pxheight:100px"></div>
第二种 : 写在head里<style>.div1{width:100pxheight:100px}</style>
第三种:写在外面,新建一个style.css文件,然后把第二种里style里的东西复制进来,在主页面<link href="style.css" rel="stylesheet>.