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