将主页重定向到前端控制器

时间:2012-09-13 00:35:13

标签: java model-view-controller servlets

我有一个映射到/Controller网址格式的前端控制器,因此可以在http://localhost:8080/myproject/Controller上使用。如何配置我的Web应用程序,以便http://localhost:8080/myproject上的主页自动重定向到它?

1 个答案:

答案 0 :(得分:1)

最简单的方法之一就是在<welcome-file>中将其注册为web.xml

<welcome-file-list>
    <welcome-file>Controller</welcome-file>
</welcome-file-list>