简体   繁体   English

Maven 通过命令行指定 contextPath 运行 Jetty Plugin

[英]Maven run Jetty Plugin by command line specifying contextPath

I'm on IntelliJ IDEA CE and I'm running a war application by means of the Maven Jetty Plugin.我在 IntelliJ IDEA CE 上,我正在通过 Maven Jetty 插件运行一个战争应用程序。

I don't have the plugin in my pom.xml (and I don't want to), so I'm running directly the web server with this command:我的 pom.xml 中没有插件(我不想),所以我使用以下命令直接运行 Web 服务器:

mvn org.eclipse.jetty:jetty-maven-plugin:9.4.26.v20200117:run-exploded

It works fine but it doesn't apply the contextPath specified in the xml file src/main/webapp/META-INF/context.xml它工作正常,但它不应用在 xml 文件src/main/webapp/META-INF/context.xml指定的contextPath

I would like to specify the right contextPath from the terminal command.我想从终端命令中指定正确的 contextPath。 The documentation doesn't say anything specific about this.文档没有说明任何关于此的具体内容。 The tests I've made (without any successful result) are the following:我所做的测试(没有任何成功的结果)如下:

mvn org.eclipse.jetty:jetty-maven-plugin:9.4.26.v20200117:run-exploded -Dproject.artifactId='/project'
mvn org.eclipse.jetty:jetty-maven-plugin:9.4.26.v20200117:run-exploded -DcontextPath='/project'
mvn org.eclipse.jetty:jetty-maven-plugin:9.4.26.v20200117:run-exploded -Dconfiguration.webApp.contextPath="/project"
mvn org.eclipse.jetty:jetty-maven-plugin:9.4.26.v20200117:run-exploded -Djetty.configuration.webApp.contextPath="/project"

What am I missing?我错过了什么?

This is ultimately a generic maven tip, not Jetty specific.这最终是一个通用的 Maven 技巧,而不是特定于 Jetty 的技巧。

In other words, how to figure out what you can do with a maven plugin.换句话说,如何弄清楚你可以用 Maven 插件做什么。

$ mvn org.eclipse.jetty:jetty-maven-plugin:9.4.26.v20200117:help
...(snip)...

jetty:help
  Display help information on jetty-maven-plugin.
  Call mvn jetty:help -Ddetail=true -Dgoal=<goal-name> to display parameter
  details.

So lets see what the details are on goal :run-exploded ...所以让我们看看目标的细节是什么:run-exploded ...

$ mvn org.eclipse.jetty:jetty-maven-plugin:9.4.26.v20200117:help -Ddetail=true -Dgoal=run-exploded
[INFO] Scanning for projects...
[INFO] 
[INFO] ------------------< org.apache.maven:standalone-pom >-------------------
[INFO] Building Maven Stub Project (No POM) 1
[INFO] --------------------------------[ pom ]---------------------------------
[INFO] 
[INFO] --- jetty-maven-plugin:9.4.26.v20200117:help (default-cli) @ standalone-pom ---
[INFO] Jetty :: Jetty Maven Plugin 9.4.26.v20200117
  Jetty maven plugins

jetty:run-exploded
  This goal is used to assemble your webapp into an exploded war and
  automatically deploy it to Jetty.
  
  Once invoked, the plugin runs continuously, and can be configured to scan for
  changes in the pom.xml and to WEB-INF/web.xml, WEB-INF/classes or WEB-INF/lib
  and hot redeploy when a change is detected.
  
  You may also specify the location of a jetty.xml file whose contents will be
  applied before any plugin configuration. This can be used, for example, to
  deploy a static webapp that is not part of your maven build.

  Available parameters:

    contextHandlers
      List of other contexts to set up. Consider using instead the <jettyXml>
      element to specify external jetty xml config file. Optional.

    contextXml
      Location of a context xml configuration file whose contents will be
      applied to the webapp AFTER anything in <webApp>.Optional.

    dumpOnStart (Default: false)
      Use the dump() facility of jetty to print out the server configuration to
      logging
      User property: dumponStart

    excludedGoals
      List of goals that are NOT to be used

    httpConnector
      A ServerConnector to use.

    jettyXml
      Comma separated list of a jetty xml configuration files whose contents
      will be applied before any plugin configuration. Optional.

    loginServices
      List of security realms to set up. Consider using instead the <jettyXml>
      element to specify external jetty xml config file. Optional.

    nonBlocking (Default: false)
      Determines whether or not the server blocks when started. The default
      behavior (false) will cause the server to pause other processes while it
      continues to handle web requests. This is useful when starting the server
      with the intent to work with it interactively. This is the behaviour of
      the jetty:run, jetty:run-war, jetty:run-war-exploded goals.
      
      If true, the server will not block the execution of subsequent code. This
      is the behaviour of the jetty:start and default behaviour of the
      jetty:deploy goals.

    reload (Default: automatic)
      reload can be set to either 'automatic' or 'manual' if 'manual' then the
      context can be reloaded by a linefeed in the console if 'automatic' then
      traditional reloading on changed files is enabled.
      User property: jetty.reload

    requestLog
      A RequestLog implementation to use for the webapp at runtime. Consider
      using instead the <jettyXml> element to specify external jetty xml config
      file. Optional.

    scanIntervalSeconds (Default: 0)
      The interval in seconds to scan the webapp for changes and restart the
      context if necessary. Ignored if reload is enabled. Disabled by default.
      Required: Yes
      User property: jetty.scanIntervalSeconds

    server
      A wrapper for the Server object

    skip (Default: false)
      Skip this mojo execution.
      User property: jetty.skip

    stopKey
      Key to provide when stopping jetty on executing java -DSTOP.KEY=<stopKey>
      -DSTOP.PORT=<stopPort> -jar start.jar --stop

    stopPort
      Port to listen to stop jetty on executing -DSTOP.PORT=<stopPort>
      -DSTOP.KEY=<stopKey> -jar start.jar --stop

    supportedPackagings
      Per default this goal support only war packaging. If your project use an
      other type please configure it here.

    systemProperties
      System properties to set before execution. Note that these properties will
      NOT override System properties that have been set on the command line or
      by the JVM. They WILL override System properties that have been set via
      systemPropertiesFile. Optional.

    systemPropertiesFile
      File containing system properties to be set before execution Note that
      these properties will NOT override System properties that have been set on
      the command line, by the JVM, or directly in the POM via systemProperties.
      Optional.
      User property: jetty.systemPropertiesFile

    useProvidedScope (Default: false)
      Whether or not to include dependencies on the plugin's classpath with
      <scope>provided</scope> Use WITH CAUTION as you may wind up with duplicate
      jars/classes.

    war (Default: ${project.build.directory}/${project.build.finalName})
      The location of the war file.
      Required: Yes

    webApp
      An instance of org.eclipse.jetty.webapp.WebAppContext that represents the
      webapp. Use any of its setters to configure the webapp. This is the
      preferred and most flexible method of configuration, rather than using the
      (deprecated) individual parameters like 'tmpDirectory', 'contextPath' etc.

This tells you that the configuration for the webApp is where you set the contextPath这告诉您webApp的配置是您设置contextPath

Unfortunately, that's a complex object and you cannot specify that on the command line.不幸的是,这是一个复杂的对象,您无法在命令行中指定它。

So edit your pom.xml to include it.所以编辑你的pom.xml以包含它。

  <build>
    <pluginManagement>
      <plugins>
        <plugin>
          <groupId>org.eclipse.jetty</groupId>
          <artifactId>jetty-maven-plugin</artifactId>
          <configuration>
            <webApp>
              <contextPath>/foo</contextPath>
            </webApp>
          </configuration>
        </plugin>
  ...

See also How to define complex Maven properties in the comand line另请参阅如何在命令行中定义复杂的 Maven 属性

  1. Here is the link https://www.eclipse.org/jetty/documentation/jetty-9/index.html#jetty-maven-plugin这是链接https://www.eclipse.org/jetty/documentation/jetty-9/index.html#jetty-maven-plugin

  2. Here is the commandline:这是命令行:

mvn jetty:run -Dcontext=/abc
  1. This command line is for the following pom:此命令行用于以下 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.rahul.soAnswer</groupId>
    <artifactId>jetty-run</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>jetty-answer</name>
    <packaging>war</packaging>
    <properties>
        <maven.compiler.source>11</maven.compiler.source>
        <maven.compiler.target>11</maven.compiler.target>
    </properties>
    <build>
        <plugins>
            <plugin>
                <groupId>org.eclipse.jetty</groupId>
                <artifactId>jetty-maven-plugin</artifactId>
                <version>9.4.44.v20210927</version>
                <configuration>
                    <webApp>
                        <contextPath>${context}</contextPath>
                    </webApp>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

You can choose to add more detail to the configuration as per your application needs您可以选择根据您的应用程序需要向配置添加更多详细信息

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM