java設(shè)置為servlet為首頁的方法
配置<welcome-file-list>標(biāo)簽
網(wǎng)站的根目錄下WEB-INF中的web.xml中
<welcome-file-list> <welcome-file>home/index</welcome-file> </welcome-file-list>
注意: home/index 前面沒有 /
servlet頁面:
@WebServlet(name = "ServletIndex" ,value = "/home/index")