在web.xml中,您可以定义一个欢迎文件,当导航到应用程序的根目录时可以看到该文件:
<welcome-file-list> <welcome-file>index.jsp</welcome-file></welcome-file-list>
然后,您可以创建一个微小的index.jsp,该重定向到您想要的位置:
<% response.sendRedirect("app/index.html"); %>
欢迎分享,转载请注明来源:内存溢出
在web.xml中,您可以定义一个欢迎文件,当导航到应用程序的根目录时可以看到该文件:
<welcome-file-list> <welcome-file>index.jsp</welcome-file></welcome-file-list>
然后,您可以创建一个微小的index.jsp,该重定向到您想要的位置:
<% response.sendRedirect("app/index.html"); %>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)