码迷,mamicode.com
首页 > Web开发 > 详细

idea运行时默认显示的index.jsp修改方法

时间:2018-08-02 00:07:25      阅读:919      评论:0      收藏:0      [点我收藏+]

标签:pre   ide   file   login   ati   www.   代码   服务   idea   

在web.xml中加入以下代码,然后重启服务器就可以了.

<welcome-file-list>
    <welcome-file>这儿写你要显示的页面名称</welcome-file>
</welcome-file-list>

添加位置如下:

<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
         version="3.1">
    <welcome-file-list>
        <welcome-file>login.jsp</welcome-file>
    </welcome-file-list>
</web-app>

这样运行项目时就默认显示login.jsp页面了

idea运行时默认显示的index.jsp修改方法

标签:pre   ide   file   login   ati   www.   代码   服务   idea   

原文地址:https://www.cnblogs.com/c-c-c-c/p/9404402.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!