0

I have searched on Google for serveral hours , but I can figure out this . When I try to access css/js file both inside and outside WEB-INF . But Tomcat just shows me 404 error .

dispatcher-servlet.xml

<?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/mvc 
      http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
      http://www.springframework.org/schema/beans 
      http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
      http://www.springframework.org/schema/context 
      http://www.springframework.org/schema/context/spring-context-3.0.xsd">

    <context:component-scan base-package="controller" />
    <mvc:annotation-driven />
    <bean id="jspViewResolver"
          class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="viewClass"
                      value="org.springframework.web.servlet.view.JstlView" />
        <property name="prefix" value="/WEB-INF/jsp/" />
        <property name="suffix" value=".jsp" />
    </bean>
        <mvc:resources mapping="/resources/**"  location="/resources/" />
</beans>

In my index.jsp file , I try all of these

<link rel="stylesheet" href="<c:url value="/resources/css/site.css"/>"/>
<link rel="stylesheet" href="<c:url value="${pageContext.request.contextPath}/resources/css/site.css"/>"/>
<link href="/resources/css/site.css" rel="stylesheet">

web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0"
         xmlns="http://java.sun.com/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
         metadata-complete="false">

    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/dispatcher-servlet.xml</param-value>
    </context-param>

    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>

    <servlet>
        <servlet-name>dispatcher</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <load-on-startup>2</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>dispatcher</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>

    <session-config>
        <session-timeout>
            30
        </session-timeout>
    </session-config>

    <welcome-file-list>
        <welcome-file>/</welcome-file>
    </welcome-file-list>

</web-app>
13
  • your directories confuses me: is there a folder: "....Web Pages/resources/css/" containing the "site.css"? BTW: <link rel="stylesheet" href="<c:url value="/resources/css/site.css"/>"/> is right Commented Jan 31, 2016 at 8:59
  • Yes. That's right. But I have configed it in my servlet. Commented Jan 31, 2016 at 9:37
  • can you try by creating the resource folder under WebPages not inside Web-INF.. See Map Resouces in spring Commented Jan 31, 2016 at 9:40
  • I created both under Webpages and under web-inf. But just 404 error Commented Jan 31, 2016 at 9:43
  • 1
    I do not see such a kind of configuration in your web.xml, but one for spring in the dispatcher-servlet.xml: ` <mvc:resources mapping="/resources/**" location="/resources/" />` Commented Jan 31, 2016 at 10:04

1 Answer 1

0

Your configuration files map resources in webapp/resources, while you put it into WEB-INF. To maintain your directory tree you should use

<mvc:resources mapping="/resources/**" location="/WEB-INF/resources/" />
Sign up to request clarification or add additional context in comments.

1 Comment

I tried it but it doesn't work . Anyway , tks so much

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.