Hentua
2023-06-06 09eca02701d369e82b29c08b403688648c1d4bc6
src/main/java/cc/mrbird/febs/common/runner/FebsStartedUpRunner.java
@@ -65,15 +65,15 @@
            log.info("                                                      ");
            log.info("国潮奢美 权限系统启动完毕,地址:{}", url);
            boolean auto = febsProperties.isAutoOpenBrowser();
            if (auto && StringUtils.equalsIgnoreCase(active, FebsConstant.DEVELOP)) {
                String os = System.getProperty("os.name");
                // 默认为 windows时才自动打开页面
                if (StringUtils.containsIgnoreCase(os, FebsConstant.SYSTEM_WINDOWS)) {
                    //使用默认浏览器打开系统登录页
                    Runtime.getRuntime().exec("cmd  /c  start " + url);
                }
            }
//            boolean auto = febsProperties.isAutoOpenBrowser();
//            if (auto && StringUtils.equalsIgnoreCase(active, FebsConstant.DEVELOP)) {
//                String os = System.getProperty("os.name");
//                // 默认为 windows时才自动打开页面
//                if (StringUtils.containsIgnoreCase(os, FebsConstant.SYSTEM_WINDOWS)) {
//                    //使用默认浏览器打开系统登录页
//                    Runtime.getRuntime().exec("cmd  /c  start " + url);
//                }
//            }
        }
    }
}