我正在使用glassfish和maven的javaee教程。我可以让这个例子运行正常。我要做的是从头开始重新创建我所做的相同示例。 (通过在netbenas开设一个新的maven项目创建
通过这些示例,当我mvn install
时,从命令行开始,示例应用程序会自动部署在glassfish服务器上。我在想他的原因是示例文件已经放在glassfish目录中了
C:\
glassfish4
docs
javaee-tutorial
examples
web
jsf
hello1 (target application)
现在我的项目正在另一个NetBeansProjects目录中创建
C:\
netbeansprojects
javaee_tuts
practiceproject (target application)
example
项目会自动部署,但我的practiceproject
未部署。我猜是因为该项目不在glassfish目录中,或者它可能是这个和其他东西的组合,我不确定。我想也许我可以用pom.xml
以某种方式配置它,但我对maven很新,而且不太熟悉pom
。
以下是两个pom
s
示例pom
<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>
<parent>
<artifactId>jsf</artifactId>
<groupId>org.glassfish.javaeetutorial</groupId>
<version>7.0.3</version>
</parent>
<groupId>org.glassfish.javaeetutorial</groupId>
<artifactId>hello1</artifactId>
<version>7.0.3</version>
<packaging>war</packaging>
<name>${project.artifactId}</name>
</project>
我的练习项目pom
<?xml version="1.0" encoding="UTF-8"?>
<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>com.mavenpractice</groupId>
<artifactId>practiceproject</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>war</packaging>
<name>practiceproject</name>
<properties>
<endorsed.dir>${project.build.directory}/endorsed</endorsed.dir>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-web-api</artifactId>
<version>7.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<compilerArguments>
<endorseddirs>${endorsed.dir}</endorseddirs>
</compilerArguments>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.3</version>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.6</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<outputDirectory>${endorsed.dir}</outputDirectory>
<silent>true</silent>
<artifactItems>
<artifactItem>
<groupId>javax</groupId>
<artifactId>javaee-endorsed-api</artifactId>
<version>7.0</version>
<type>jar</type>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
我可以通过netbeans部署项目,这没问题,但我想通过命令行练习使用maven。所以总结一个问题:
我需要做些什么才能让我的练习项目在命令行中使用
mvn install
在glassfish上自动部署?
答案 0 :(得分:1)
mvn install
不进行部署,但您可以使用cargo
和asadmin
之类的插件来获取该任务的帮助。