如何设置让eclipse自动弹出web项目的主页,每次都要手写很麻烦

在web.xml中添加:

<!-- 项目启动后自动打开浏览器跳转到登录页 -->

<servlet>

<servlet-name>MyIndex</servlet-name>

<servlet-class>com.***.MyIndex</servlet-class>

<load-on-startup>1000</load-on-startup>

</servlet>

然后新建一个类

package com.***.servlet;

import java.io.IOException;

import javax.servlet.ServletException;

import javax.servlet.http.HttpServlet;

/*

* 2017年10月9日 16:57:32

* by emcc

* 只用作项目启动后自动打开浏览器跳转到登录页

* */

@SuppressWarnings("serial")

public class MyIndex extends HttpServlet{

public MyIndex(){

super();

}

public void init() throws ServletException {

try {

Runtime.getRuntime().exec(new String[] { "C:\\Users\\Administrator\\AppData\\Local\\Google\\Chrome\\Application\\chrome.exe", "http://localhost:8080/***/" });

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}

}

把对应的位置改成你自己的就行了,clean一下server 然后启动项目就跳转了