如何在启动spring boot应用程序后自动启动浏览器。是否有任何侦听器方法回调以检查webapp是否已部署并准备好提供请求,以便在加载浏览器时,用户可以看到索引页面,可以开始与webapp进行交互吗?
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
// launch browser on localhost
}
答案 0 :(得分:4)
你可以通过一些java代码来实现。我不确定弹簧靴是否有开箱即用的东西。
import java.awt.Desktop;
import java.io.IOException;
import java.net.URI;
import java.net.URISyntaxException;
public class Browser {
public static void main(String[] args) {
String url = "http://www.google.com";
if(Desktop.isDesktopSupported()){
Desktop desktop = Desktop.getDesktop();
try {
desktop.browse(new URI(url));
} catch (IOException | URISyntaxException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}else{
Runtime runtime = Runtime.getRuntime();
try {
runtime.exec("xdg-open " + url);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
}
答案 1 :(得分:4)
以下代码对我有用:
@EventListener({ApplicationReadyEvent.class})
void applicationReadyEvent() {
System.out.println("Application started ... launching browser now");
Browse("www.google.com");
}
public static void Browse(String url) {
if(Desktop.isDesktopSupported()){
Desktop desktop = Desktop.getDesktop();
try {
desktop.browse(new URI(url));
} catch (IOException | URISyntaxException e) {
e.printStackTrace();
}
}else{
Runtime runtime = Runtime.getRuntime();
try {
runtime.exec("rundll32 url.dll,FileProtocolHandler " + url);
} catch (IOException e) {
e.printStackTrace();
}
}
}
答案 2 :(得分:1)
我最近一直试图让自己开始工作,我知道自从问到这个问题已经有一段时间了,但我的工作(以及非常基本/简单)解决方案如下所示。这是任何想要让你的工作变得有效的人的起点,你的应用程序需要重构!
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import java.awt.*;
import java.io.IOException;
import java.net.URI;
import java.net.URISyntaxException;
@SpringBootApplication
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
openHomePage();
}
private static void openHomePage() {
try {
URI homepage = new URI("http://localhost:8080/");
Desktop.getDesktop().browse(homepage);
} catch (URISyntaxException | IOException e) {
e.printStackTrace();
}
}
}
答案 3 :(得分:1)
@SpringBootApplication
@ComponentScan(basePackageClasses = com.io.controller.HelloController.class)
public class HectorApplication {
public static void main(String[] args) throws IOException {
SpringApplication.run(HectorApplication.class, args);
openHomePage();
}
private static void openHomePage() throws IOException {
Runtime rt = Runtime.getRuntime();
rt.exec("rundll32 url.dll,FileProtocolHandler " + "http://localhost:8080");
}
}
答案 4 :(得分:0)
如果将应用程序打包为WAR
文件,配置应用程序服务器(如Tomcat
,然后通过IDE重新启动配置的应用程序服务器,则IDE会自动打开浏览器选项卡。
如果要将应用程序打包为JAR
文件,则IDE将无法打开Web浏览器,因此必须打开Web浏览器并键入所需的链接(localhost:8080
)。但是在开发阶段,采取这些无聊的步骤可能非常繁琐。
spring-boot应用程序准备就绪后,可以使用Java编程语言打开浏览器。您可以使用Selenium
之类的第三方库,也可以使用以下代码段。
打开浏览器的代码段
@EventListener({ApplicationReadyEvent.class})
private void applicationReadyEvent()
{
if (Desktop.isDesktopSupported())
{
Desktop desktop = Desktop.getDesktop();
try
{
desktop.browse(new URI(url));
} catch (IOException | URISyntaxException e)
{
e.printStackTrace();
}
} else
{
Runtime runtime = Runtime.getRuntime();
String[] command;
String operatingSystemName = System.getProperty("os.name").toLowerCase();
if (operatingSystemName.indexOf("nix") >= 0 || operatingSystemName.indexOf("nux") >= 0)
{
String[] browsers = {"opera", "google-chrome", "epiphany", "firefox", "mozilla", "konqueror", "netscape", "links", "lynx"};
StringBuffer stringBuffer = new StringBuffer();
for (int i = 0; i < browsers.length; i++)
{
if (i == 0) stringBuffer.append(String.format("%s \"%s\"", browsers[i], url));
else stringBuffer.append(String.format(" || %s \"%s\"", browsers[i], url));
}
command = new String[]{"sh", "-c", stringBuffer.toString()};
} else if (operatingSystemName.indexOf("win") >= 0)
{
command = new String[]{"rundll32 url.dll,FileProtocolHandler " + url};
} else if (operatingSystemName.indexOf("mac") >= 0)
{
command = new String[]{"open " + url};
} else
{
System.out.println("an unknown operating system!!");
return;
}
try
{
if (command.length > 1) runtime.exec(command); // linux
else runtime.exec(command[0]); // windows or mac
} catch (IOException e)
{
e.printStackTrace();
}
}
}
使用Selenium打开浏览器
要使用硒库,请将以下依赖项添加到pom.xml
文件中。
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>3.141.59</version>
</dependency>
然后在您的主类中,添加以下代码段。
@EventListener({ApplicationReadyEvent.class})
private void applicationReadyEvent()
{
String url = "http://localhost:8080";
// pointing to the download driver
System.setProperty("webdriver.chrome.driver", "Downloaded-PATH/chromedriver");
ChromeDriver chromeDriver = new ChromeDriver();
chromeDriver.get(url);
}
通知:可以使用大多数流行的浏览器,例如FirefoxDriver
,OperaDriver
,EdgeDriver
,但必须下载浏览器的驱动程序
答案 5 :(得分:0)
Runtime rt = Runtime.getRuntime();
try {
rt.exec("cmd /c start chrome.exe https://localhost:8080");
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
上面的代码对我有用。将chrome.exe更改为您选择的浏览器,并将Url更改为您选择的浏览器。 注意:您必须包含方案-http或https,并且必须安装您选择的浏览器,否则您的应用程序将在不自动打开浏览器的情况下运行。 不过仅适用于Windows 。