javaweb設(shè)置為servlet為默認(rèn)首頁(yè)的方法
servlet頁(yè)面
@WebServlet(name = "ServletIndex", value="/index")
web.xml配置如下
<welcome-file-list> <welcome-file>index</welcome-file> </welcome-file-list>
訪問(wèn)域名默認(rèn)首頁(yè)就會(huì)訪問(wèn)/index
javaweb設(shè)置為servlet為默認(rèn)首頁(yè)的方法
servlet頁(yè)面
@WebServlet(name = "ServletIndex", value="/index")
web.xml配置如下
<welcome-file-list> <welcome-file>index</welcome-file> </welcome-file-list>
訪問(wèn)域名默認(rèn)首頁(yè)就會(huì)訪問(wèn)/index