使用Spring MVC 3,当用户转到http://localhost/myspringapp/时,如何决定他们将看到哪个页面?我目前得到404。
答案 0 :(得分:3)
您可以在Controller上设置映射:
@RequestMapping("/") @Controller
public class HomeController {
@RequestMapping
public String index() { /* your action */ }
您还可以在welcome-file
。
web.xml