salut
sous spring 3.0
dans un controller, j'ai bien mis l'annotation, mais la vue n'est pas affiché
lorsque je vais sur:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 @Controller public class UserController { @Autowired private IUserService depotService; @RequestMapping("/userInfo") public ModelAndView userInfo() { ModelAndView modelAndView = new ModelAndView("userInfo"); modelAndView.addObject("allUserInfo", userService.findUserInfo()); return modelAndView; } }
http://localhost:8084/Supervision/userInfo
J'ai une erreur 404
j'ai rien mis concernant ce controller dans le fichier dispatcher-servlet.xml, web.xml
une idée?
merci
Partager