import org.springframework.boot.CommandLineRunner; import org.springframework.stereotype.Component; @Component public class OpenBrowser implements CommandLineRunner { @Override public void run(String... args) throws Exception { System.out.println("应用已经准备就绪 ... 启动浏览器并自动加载指定的页面 ... "); try { Runtime.getRuntime().exec("cmd /c start https://www.word.com:22599/dist/index.html");//指定自己项目的路径 } catch (Exception ex) { ex.printStackTrace(); } } }
写个controller直接丢进去