Hello!
In web.xml I have DispatcherServlet mapped as follows:
My spring controller is
EmployeeController is successfully instantiated and this handler method is registered which I can see in log file.
I type in browser -
http://localhost:8080/timesheet/employees - and receive this warning
Method showAllEmployees is called which is logged! Then DispatcherServlet tries to handle path to list.jsp instead of InternalViewResolver.
How to tell DispatcherServlet not to handle path to my page. Meanwhile I don't want to change url -
http://localhost:8080/timesheet/employees
I was looking for answer on another sites but it didn't help.