I am trying to import several jsp and html pages in one single jsp page in spring mvc. I have added the docbase in server.xml of apache tomcat as
<Context docBase="/Users/uname/Desktop path="statfiles" />
<Context docBase="BankFeed" path="/helloweb" reloadable="true" source="org.eclipse.jst.jee.server:BankFeed"/></Host>
but when i am import the file in my jsp page
<c:import var="testfile" url="/statfiles/test.html" />
<c:out value="${testfile}" />
I am getting this warning
WARN : org.springframework.web.servlet.PageNotFound - No mapping found for HTTP request with URI [/helloweb/statfiles/test.html] in DispatcherServlet with name 'appServlet'
How can i resolve this issue and how to get the jsp and html pages outside the webapp project folder.
This is the directory Structure