Advertisement

如何设置web项目打开的默认页面

阅读量:

调整 web .xml 配置文件的设置

复制代码
    <welcome-file-list>
        <welcome-file>login.html</welcome-file>
        <welcome-file>login.jsp</welcome-file>
        <welcome-file>index.html</welcome-file>
        <welcome-file>index.htm</welcome-file>
        <welcome-file>index.jsp</welcome-file>
        <welcome-file>default.html</welcome-file>
        <welcome-file>default.htm</welcome-file>
        <welcome-file>default.jsp</welcome-file>
    </welcome-file-list>
    
    

当javaweb项目启动时,系统会按照自

全部评论 (0)

还没有任何评论哟~