欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

springboot启动后直接访问默认路劲

程序员文章站 2024-01-07 17:49:10
...

springboot启动后直接访问默认路劲

@Configuration
	public class IndexConfig {
		@EventListener({ ApplicationReadyEvent.class })
		void applicationReadyEvent() {
			System.out.println("正在为您启动应用...");
			String url = "http://localhost:8080/UpAndDown/index";
			Runtime runtime = Runtime.getRuntime();
			try {
				runtime.exec("rundll32 url.dll,FileProtocolHandler " + url);
			} catch (IOException e) {
				e.printStackTrace();
			}
		}
	}
相关标签: 相关

上一篇:

下一篇: