无法在插件com.google.appengine:appengine-maven-plugin中找到目标'run'

Ser*_*raf 0 java eclipse google-app-engine maven google-cloud-platform

我正在构建一个Maven应用程序,我希望在Java中使用Google应用程序引擎进行部署.

我试图在本地服务器上进行测试 localhost:8080

当我运行该命令时mvn clean package,它给我一个Build Success提示,如下所示

[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 8.284 s
[INFO] Finished at: 2017-01-06T12:32:58-05:00
[INFO] Final Memory: 29M/400M
[INFO] ------------------------------------------------------------------------
Run Code Online (Sandbox Code Playgroud)

但是,当我运行该命令时,mvn appengine:run它给了我这个错误消息:

[INFO] Scanning for projects...
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 0.259 s
[INFO] Finished at: 2017-01-06T12:33:03-05:00
[INFO] Final Memory: 8M/150M
[INFO] ------------------------------------------------------------------------
[ERROR] Could not find goal 'run' in plugin com.google.appengine:appengine-maven-plugin:1.9.48 among available goals backends_configure, backends_delete, backends_rollback, backends_start, backends_stop, backends_update, create-property, debug, devserver, devserver_start, devserver_stop, endpoints_get_client_lib, endpoints_get_discovery_doc, endpoints_get_swagger_doc, enhance, migrate_traffic, rollback, set_default_version, start_module_version, stop_module_version, update, update_cron, update_dispatch, update_dos, update_indexes, update_queues, vacuum_indexes -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoNotFoundException
Run Code Online (Sandbox Code Playgroud)

我在我的pom文件中添加了appengine骨架archtype的插件

<plugin>
    <groupId>com.google.cloud.tools</groupId>
    <artifactId>appengine-maven-plugin</artifactId>
    <version>1.0.0</version>
</plugin>
Run Code Online (Sandbox Code Playgroud)

我还将版本更改为云端maven文档中的版本

<plugin>
    <groupId>com.google.appengine</groupId>
    <artifactId>gcloud-maven-plugin</artifactId>
    <version>1.9.48</version>
    <configuration>
        <set_default>true</set_default>
    </configuration>
</plugin>
Run Code Online (Sandbox Code Playgroud)

我仍然得到上述错误.

我猜的是我错过了一些插件.我想知道如何在本地运行我的应用程序以及缺少什么来制作mvn appengine:run work

编辑

现在有了下面给出的修复,我收到了这个错误:

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.2:compile (default-compile) on project java-adwords: Compilation failure
[ERROR] /home/seraf/java-adwords-maven/java-adwords/src/main/java/myApp/adwords_axis/MainApp.java:[11,19] doGet(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) in adwords_axis.MainApp cannot override doGet(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) in javax.servlet.http.HttpServlet
[ERROR] overridden method does not throw java.lang.Exception
[ERROR] -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
Run Code Online (Sandbox Code Playgroud)

但这是我的java主代码,它会抛出异常:

      public void doGet(HttpServletRequest request, HttpServletResponse response)                                                                              
          throws Exception {                                                    

          response.setContentType("text/plain");                                
          response.getWriter().println("Test");                                 
          run();                                                                

      }  
Run Code Online (Sandbox Code Playgroud)

lor*_*max 7

根据Google App Engine文档,您可以使用两个插件处理App Engine maven命令:

如果要使用基于该appcfg的插件,请使用以下插件

<plugin>
    <groupId>com.google.appengine</groupId>
    <artifactId>gcloud-maven-plugin</artifactId>
    <version>1.9.48</version>
    <configuration>
        <set_default>true</set_default>
    </configuration>
</plugin>
Run Code Online (Sandbox Code Playgroud)

本地服务器和部署的命令将是

 - mvn appengine:devserver
 - mvn appengine:update
Run Code Online (Sandbox Code Playgroud)

如果要使用基于该Gloud SDK的插件,请使用以下插件

<plugin>
    <groupId>com.google.cloud.tools</groupId>
    <artifactId>appengine-maven-plugin</artifactId>
    <version>1.0.0</version>
</plugin>
Run Code Online (Sandbox Code Playgroud)

本地服务器和部署的命令将是

 - mvn appengine:run
 - mvn appengine:deploy
Run Code Online (Sandbox Code Playgroud)

如果要同时使用这两个插件,则可能需要使用以下命令:

 - mvn com.google.appengine:appengine-maven-plugin:devserver
 - mvn com.google.appengine:appengine-maven-plugin:update
 - mvn com.google.cloud.tools:appengine-maven-plugin:run
 - mvn com.google.cloud.tools:appengine-maven-plugin:deploy
Run Code Online (Sandbox Code Playgroud)

(如本主题所示)

您还可以在此主题中找到更多信息