0

运行 mvn wildfly-swarm:run 时,是否有可能打开带有 localhost:8080/index.html 选项卡的浏览器?

我会很感激你的回答!

4

1 回答 1

1

您可以结合使用 groovy 和java.awt.Desktop类(大约从 Java 1.6 开始)来打开您希望的任何 URL:

<build>
    <plugins>
        <plugin>
            <groupId>org.codehaus.gmavenplus</groupId>
            <artifactId>gmavenplus-plugin</artifactId>
            <version>1.5</version>
            <executions>
                <execution>
                    <phase>install</phase>
                    <goals>
                        <goal>execute</goal>
                    </goals>
                </execution>
            </executions>
            <configuration>
                <scripts>
                    <script>
                    <![CDATA[
                        import java.awt.Desktop
                        import java.net.URI
                        Desktop.getDesktop().browse(new URI("http://www.example.com"))
                    ]]>
                    </script>
                </scripts>
            </configuration>
            <dependencies>
                <dependency>
                    <groupId>org.codehaus.groovy</groupId>
                    <artifactId>groovy-all</artifactId>
                    <!-- any version of Groovy \>= 1.5.0 should work here -->
                    <version>2.4.7</version>
                    <scope>runtime</scope>
                </dependency>
            </dependencies>
        </plugin>
    </plugins>
</build>

(这是在 OSX 上测试过的,但是由于使用的是 java Desktop 类,所以应该是跨平台的)

于 2016-10-12T20:31:10.257 回答