I am working on a Java project on Spring framework. The project is cloned from the Heroku site. I encountered two issues...
I have created a JSP file (testing.jsp) and committed + pushed to Heroku. I created it in src/main/webapp/WEB-INF/jsp/testing.jsp
<servlet-name>spring</servlet-name> <url-pattern>/people/*</url-pattern> <url-pattern>/testing/*</url-pattern>
I have edited it in web.xml file and pushed to Heroku. However, when I tried to view it in my browser, it shows me the same interface as the default people.jsp page.
My web.xml file: https://skydrive.live.com/redir?resid=2FC5994FBEB75CC5!174&authkey=!APyQGWZbKhkoAyM
I have created a css file and pushed to Heroku. I have added the following...
<link href="/imageCSS.css" rel="stylesheet">
When I view in browser, it shows "HTTP Status 404 - /imageCSS.css"
I am new to this and I can't seem to google anything useful that helps me in my issue.