Spring MVC - 在JSP页面中包含CSS文件

时间:2016-04-19 16:51:54

标签: css spring jsp include

我的项目结构是:

webapp:
       resources:
                 css:
                     test.css WEB-INF:
       pages:
       mvc-dispatcher-servlet.xml
       web.xml

我正在尝试在我的jsp中包含一个.css文件。

MVC-调度-servlet.xml中:

<bean
    class="org.springframework.web.servlet.view.InternalResourceViewResolver">
    <property name="prefix">
        <value>/WEB-INF/pages/</value>
    </property>
    <property name="suffix">
        <value>.jsp</value>
    </property>
</bean>
    <mvc:resources mapping="/resources/**" location="resources/css/">       </mvc:resources>
<mvc:annotation-driven />

在jsp中包含css:

<link href="<c:url value="/resources/css/test.css" />" rel="stylesheet">

但它对我不起作用。我需要帮助,

2 个答案:

答案 0 :(得分:-1)

试试这个:

<link href="<c:url value="resources/css/test.css" />" rel="stylesheet">

或者你可以试试这个:

<link href="resources/css/test.css" rel="stylesheet">

答案 1 :(得分:-1)

改变这个:

<mvc:resources mapping="/resources/**" location="/resources/">  

到此:

---
- hosts: hosts
- vars: 
  - elasticsearch_java_home: /usr/lib/jmv/jre-1.7.0
  - elasticsearch_http_port: 8443

- tasks: 
  - include: tasks/main.yml

- handlers:
  - include: handlers/main.yml