gpt4 book ai didi

java - 使用 Maven 将应用程序运行到嵌入式 jboss 服务器

转载 作者:行者123 更新时间:2023-11-30 07:48:19 24 4
gpt4 key购买 nike

我在这篇文章http://buraktas.com/resteasy-example-without-using-a-web-xml/中使用resteasy和maven作为构建工具创建了简单的休息服务器应用程序。或者可以使用maven 将创建的war 运行到嵌入式jboss 服务器吗?我想实现这个场景: 1. 我将我的项目与源文件和 pom.xml 一起推送到 git hub 2. 用户克隆存储库并使用 maven 来构建和运行应用程序。 3. 转到浏览器 http://localhost:8080/rest-helloworld/helloworld 并获取 hello msg。

pom.xml <- 现在需要 mvn clean install 来准备 .war 并需要复制粘贴到应用程序服务器。我想跳过这一步。

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>buraktas.com</groupId>
<artifactId>rest-helloworld</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>war</packaging>

<name>rest-helloworld</name>
<url>http://maven.apache.org</url>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxrs</artifactId>
<version>3.0.6.Final</version>
<scope>provided</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.3</version>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
<warName>rest-helloworld</warName>
</configuration>
</plugin>
</plugins>
</build>


</project>

最佳答案

您可以使用Maven JBoss Plugin使用 Maven 执行启动/停止和部署/取消部署任务。

关于java - 使用 Maven 将应用程序运行到嵌入式 jboss 服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33624035/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com