so as the title says I\'m getting an error a
[org.springframework.web.servlet.PageNotFound] (default task-1) No mapping for GET /ProjectFE/
how should I fix this?
First of all arrange your web.xml
like this
appServlet
org.springframework.web.servlet.DispatcherServlet
1
appServlet
/
contextConfigLocation
WEB-INF/spring-config.xml
org.springframework.web.context.ContextLoaderListener
As you are defining contex-param
you don't need to use init-param
same xml file.
Now change a little in spring-config.xml
Look carefully in line
. Your folder name is Views
but you defined view
. That's why perhaps you are getting error.
Give a shout if it works.