Issue with accessing css, js files in Dynamic Web Project

coachoutlet8a

New Member
I have an issue trying to access css & js files from a jsp file (WEB-INF/jsp/index.jsp). I read through some of the similar issue faced by other people at Stack Overflow.
FVFEB.png
I added this line of code to my SpringMVCProj-servlet.xml and it made things a lot more complicated.\[code\]<mvc:resources mapping="/WebContent/**" location="/WebContent/" />\[/code\]SpringMVCProj-servlet.xml\[code\]<context:component-scan base-package="com.myapp" /><mvc:resources mapping="/WebContent/**" location="/WebContent/" /><bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="http://stackoverflow.com/WEB-INF/jsp/" /> <property name="suffix" value="http://stackoverflow.com/questions/15619641/.jsp" /></bean>\[/code\]Web.xml\[code\]<?xml version="1.0" encoding="UTF-8"?><web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5"> <display-name>Spring MVC Application</display-name> <welcome-file-list><!-- <welcome-file>/WEB-INF/jsp/index.jsp</welcome-file> --> <welcome-file>/WEB-INF/jsp/index.jsp</welcome-file> </welcome-file-list> <servlet> <servlet-name>SpringMVCProj</servlet-name> <servlet-class> org.springframework.web.servlet.DispatcherServlet </servlet-class> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>SpringMVCProj</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping><context-param> <param-name>contextConfigLocation</param-name> <param-value>/WEB-INF/SpringMVCProj-servlet.xml</param-value></context-param><listener> <listener-class> org.springframework.web.context.ContextLoaderListener </listener-class></listener></web-app>\[/code\]This was before I added the line of code. \[code\] <mvc:resources mapping="/WebContent/**" location="/WebContent/" />\[/code\]
Kh4Ha.png
This after ...
R3OF7.png
 
Back
Top