最新消息: USBMI致力于为网友们分享Windows、安卓、IOS等主流手机系统相关的资讯以及评测、同时提供相关教程、应用、软件下载等服务。

springboot配置项目启动完成后启动浏览器

业界 admin 3浏览 0评论

实现的方式本质上是通过命令调用浏览器访问某一路径,打成jar包后依旧有效

在项目中加入如下配置类:

package com.laob.laob_specialmon;

import org.springframework.boot.context.event.ApplicationReadyEvent;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.event.EventListener;

import java.io.IOException;

/**
 * @author zhangh     
 * @version V1.0.0
 * @projectName laob_special
 * @title     IndexConfig   
 * @package    com.laob.laob_specialmon  
 * @date   2019/9/10 19:07  
 * @explain 服务启动时自动打开项目
 */
@Configuration
public class IndexConfig {

    @EventListener({ApplicationReadyEvent.class})
    void applicationReadyEvent() {
        System.out.println("Portboy准备就绪 ... 启动浏览器");
        // 启动后访问地址
        String url = "http://localhost:8090";
        Runtime runtime = Runtime.getRuntime();
        try {
            runtime.exec("rundll32 url.dll,FileProtocolHandler " + url);
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

}

实现的方式本质上是通过命令调用浏览器访问某一路径,打成jar包后依旧有效

在项目中加入如下配置类:

package com.laob.laob_specialmon;

import org.springframework.boot.context.event.ApplicationReadyEvent;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.event.EventListener;

import java.io.IOException;

/**
 * @author zhangh     
 * @version V1.0.0
 * @projectName laob_special
 * @title     IndexConfig   
 * @package    com.laob.laob_specialmon  
 * @date   2019/9/10 19:07  
 * @explain 服务启动时自动打开项目
 */
@Configuration
public class IndexConfig {

    @EventListener({ApplicationReadyEvent.class})
    void applicationReadyEvent() {
        System.out.println("Portboy准备就绪 ... 启动浏览器");
        // 启动后访问地址
        String url = "http://localhost:8090";
        Runtime runtime = Runtime.getRuntime();
        try {
            runtime.exec("rundll32 url.dll,FileProtocolHandler " + url);
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

}
发布评论

评论列表 (0)

  1. 暂无评论