thnx a lot!!!!
Type: Posts; User: jeanluca; Keyword(s):
thnx a lot!!!!
Hi All
I'm trying to pass a List to a JSP and print its size!
Controller
....
List<Employee> model = employeeManager.getEmployees() ;
return new ModelAndView("employee", "model", model);
}...
thnx a lot, that solved the problem, I had
<web-app version="2.5"
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
...
wow, thats it, I had
<web-app version="2.5"
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
...
Hi All
Reading the following tutorial, http://static.springframework.org/docs/Spring-MVC-step-by-step/part2.html, I got stuck in the second chapter!
In my HelloController.java, I make the...