4

我需要将我的 JavaEE 应用程序作为目录部署在 Glassfish 上,而不是打包的 WAR 文件。是否可以使用 Maven Glassfish 插件将目录部署到 Glassfish?

使用管理控制台,这是可能的。但我也希望能够在命令行上做到这一点。

4

2 回答 2

5

以下配置对我有用(注意artifact元素指向一个目录):

<plugin>  
  <groupId>org.glassfish.maven.plugin</groupId>
  <artifactId>maven-glassfish-plugin</artifactId>
  <version>2.2-SNAPSHOT</version> 
  <configuration>                           
    <glassfishDirectory>${glassfish.home}</glassfishDirectory>
    <user>${domain.username}</user>                   
    <passwordFile>${glassfish.home}/domains/${project.artifactId}/master-password</passwordFile>                                                
    <autoCreate>true</autoCreate>
    <debug>true</debug>                                                   
    <echo>true</echo>
    <skip>${test.int.skip}</skip>
    <domain>
      <name>${project.artifactId}</name>
      <httpPort>8080</httpPort>
      <adminPort>4848</adminPort>
    </domain>           
    <components>
      <component>                 
        <name>${project.artifactId}</name>
        <artifact>${project.build.directory}/${project.build.finalName}</artifact>
      </component>
    </components>                                         
  </configuration>
</plugin> 

结果asadmin命令是:

asadmin --host localhost --port 4848 --user admin --passwordfile /home/pascal/opt
/glassfishv3/glassfish/domains/maven-glassfish-testcase/master-password --interac
tive=false --echo=true --terse=true 部署 --name maven-glassfish-testcase --forc
e=false --precompilejsp=false --verify=false --enabled=true --generatermistubs=fa
lse --availabilityenabled=false --keepreposdir=false --keepfailedstubs=false --lo
gReportedErrors=true --upload=false --help=false /home/pascal/Projects/stackoverf
低/maven-glassfish-testcase/目标/maven-glassfish-testcase
于 2010-06-17T13:58:23.203 回答
1

我没有让它与 maven 插件一起使用,但可以使用 glassfish/bin 目录中的 asadmin 命令从命令行部署到 glassfish:

asadmin deploy --contextroot context_root path_to_ear_or_directory

于 2010-06-17T13:15:29.843 回答