首頁 > 問答 > 主體
如何設置讓eclipse在啟動tomcat的時候自動彈出web項目的主頁,每次都要手動打開瀏覽器很麻煩
黄舟2017-04-21 11:20:57
在你的web專案中加上一個啟動載入的servlet:
Runtime.getRuntime().exec(new String[] { "C:\Program Files\Internet Explorer\iexplore.exe", "http://localhost:8080/app" });