我有一个映射到/Controller
网址格式的前端控制器,因此可以在http://localhost:8080/myproject/Controller
上使用。如何配置我的Web应用程序,以便http://localhost:8080/myproject
上的主页自动重定向到它?
答案 0 :(得分:1)
最简单的方法之一就是在<welcome-file>
中将其注册为web.xml
。
<welcome-file-list>
<welcome-file>Controller</welcome-file>
</welcome-file-list>