10分 |
是不是把静态资源,拦截了?
用的什么 mvc ? sping mvc ? |
10分 |
可以在浏览器环境下调试 F12
如果是chrome,在network里面找到那个css,看看是不是路径错误 |
10分 |
|
是的springmvc |
|
10分 |
那可能是拦截了静态资源,
在spirngmvc-servlet.xml里 加上 <mvc:resources mapping=”/style/**” location=”/style/”/> 试试 |
加了还是不行,然后我去网上搜关于springmvc拦截静态资源的处理方法 |
|
加到内部是行的,用的是springmvc 加了<mvc:resources mapping=”/style/**” location=”/style/”/>也不行 |
|
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:mvc="http://www.springframework.org/schema/mvc" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd"> <!-- 注解扫描包 --> <context:component-scan base-package="com.elf" /> <!-- 开启注解 --> <mvc:default-servlet-handler /> <mvc:annotation-driven /> <mvc:resources location="/style/" mapping="/style/**"/> <!-- 定义视图解析器 --> <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="/"></property> <property name="suffix" value=".jsp"></property> </bean> </beans> |