Using Apache Maven
Apache Maven是一个软件项目管理的综合工具(management and comprehension tool)。可以将WAR文件部署到App Engine中。为了加快部署的速度,App Engine团队提供了插件和Maven原型这两个东西(plugin and Maven Archetypes)。
注意:使用Maven时,你不需要从Google App Engine SDK下载java库。Maven会为你做这个事情。你也可以使用Maven在本地测试你的应用,以及将应用部署到生产环境的App Engine。
先决条件
1.安装Java 7。
2.设置环境变量JAVA_HOME
。
3.安装Maven
App Engine Managed VMs Maven projects 的处理不同
Maven projects 和 Eclipse
Maven项目和Eclipse项目有不同的结构(layout)。要在Eclipse中使用Maven项目,需要使用Eclipse for Java Enterprise Edition,它支持Maven。并且需要使用下面方法中的一个:
● 将Maven项目导入到Eclipse
● 将Maven项目作为一个WTP(Web Tools Platform)项目导入到Eclipse
● 设置两个Debug配置。一个为devserver中的Maven项目(mvn:appengine:devserver),一个为远程Java应用,你将使用它连接devserver jvm和Eclipse debug client。
具体怎么做,可以参考这个StackOverflow 问题的回答How do I make Eclipse and mvn appengine:devserver talk to each other?
你需要知道的Maven术语
在项目的创建过程中,Maven提示你需要提供这个项目的groudId,artifactId,version,以及package。这些在Maven中代表什么呢?
术语 | 含义 |
groupId | Maven中的命名空间来跟踪你的artifacts。当别人在他们的项目中使用你的项目时,这个就是他们指定的依赖属性。 |
artifactId | 在Maven中,你的项目的名字。当你的项目的用户在他们自己的Maven项目中依赖你时,也可以指定为你的项目的用户。 |
version | 你希望你的项目生成时使用的原始的Maven版本。让其以-SNAPSHOT结尾是一个不错的想法。因为这样做可以对开发中的版本Maven release Plugin的支持。 |
package | 这一代创建的Java包 |
Maven App Engine archetypes
Maven archetypes允许用户使用覆盖了公共场景的模板来创建Maven项目。App Engine利用了这个Maven特性,在Maven中心提供了一些有用的 App Engine archetypes 。
目前的App Engine artifacts列在下面:
应用类型 | Artifact | 描述 |
App Engine app* | guestbook-archetype | 生成guestbook demo例子,完成并可以运行、测试 |
App Engine app* | appengine-skeleton-archetype | 为你自己的类和资源创建一个新的包含必须的文件和目录的空App Engine项目。 |
Cloud Endpints API backend | hello-endpoints-archetype | 一个Cloud Endpoints backend API 项目例子 |
Cloud Endpints API backend | endpoints-skeleton-arhcetype | 为你自己的类和资源创建一个新的包含必须的文件和目录的空Cloud Endpoints backend API 项目。 |
App Engine app*表示一个标准的App Engine app,不是Cloud Endpoints backend API。
向存在的Maven项目添加App Engine Maven Plugin
在项目的pom.xml文件中增加plugins部分:
<plugin>
<groupId>com.google.appengine</groupId>
<artifactId>appengine-maven-plugin</artifactId>
<version>1.9.22</version>
</plugin>
指定本地测试的一个端口
本地运行的默认端口是8080,。可以通过修改appengine-maven-plugin条目来改变。
<plugin>
<groupId>com.google.appengine</groupId>
<artifactId>appengine-maven-plugin</artifactId>
<version>1.9.22</version>
<configuration>
<enableJarClasses>false</enableJarClasses>
<port>8181</port>
<address>0.0.0.0</address>
</configuration>
</plugin>
此处将端口设置为8181;地址指定为0.0.0.0,这意味着development server将会侦听来自本地网络的请求。
使用App Engine Maven Plugin管理和运行一个项目
App Engine Maven Plugin支持在Maven中的App Engine。它提供了使用development server以及appcfg工具的大多数功能。
The plugin also provides Google Cloud Endpoints goals for discovery doc generation and client library generation.
一旦App Engine Maven Plugin被添加到了pom.xml中,一些Engine-specific Maven goals 就可以得到。查看所有可以获得的目标,调用命令:
mvn help:describe -Dplugin=appengine
App Engine Maven plugin 目标
App Engine Maven plugin 目标可以分类为devserver目标、应用和项目管理目标、Endpoints目标。
Development server目标
appengine:devserver
运行development server。当server运行时,它会继续检查appengine-web.xml是否发生了改变。这意味着appengine-web.xml发生改变时不需要停止再启动你的应用。
appengine:devserver_start
异步启动
appengine:devserver_stop
停止由appengine:devserver_start启动的development server
Troubleshooting upload errors
发生错误:404 Not Found This application does not exist (app_id=u'your-app-ID')
原因:有多个Google账户,使用了错误的账户
解决方法:切换到~目录,重命名.appcfg_oauth2_tokens_java之后再重试。
Using Apache Maven的更多相关文章
- maven install Failed to execute goal org.apache.maven.plugins:maven-war-plugin:2.1.1:war (default-war) on project web_nanchang
maven打包成war时,报错:Failed to execute goal org.apache.maven.plugins:maven-war-plugin:2.1.1:war (default- ...
- Failed to execute goal org.apache.maven.plugins:maven-antrun-plugin:1.7:run (dist) on project hadoop-kms: An Ant BuildException has occured
编译cdh版hadoop2.5.0出现的问题 系统: CentOs66 64位 JDK:1.7 Maven: 3.0.5 Protobuf: libprotoc 2.5.0 编译命令: mvn pac ...
- eclipse加载maven工程提示pom.xml无法解析org.apache.maven.plugins:maven-resources-plugin:2.4.3解决方案
pom文件提示信息: Failure to transfer org.apache.maven.plugins:maven-resources-plugin:pom:2.4.3 from http:/ ...
- Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project LogTest: Compilation failure -> [Help 1]
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default ...
- [ERROR] Failed to execute goal org.apache.maven.plugins:maven-install-plugin:2.3.1:
security-sdk-1.0.jar已经存在于D:/secServerSDK-test/src/main/resources/lib下 报错如下: xxxxxx@xxxxxxxx /d/secSe ...
- maven Error resolving version for plugin 'org.apache.maven.plugins:maven-eclipse-plugin' from the repositories 解决
报错:Error resolving version for plugin 'org.apache.maven.plugins:maven-eclipse-plugin' from the repos ...
- [Maven]Apache Maven 入门篇
作者:George Ma 上 写这个 maven 的入门篇是因为之前在一个开发者会的动手实验中发现挺多人对于 maven 不是那么了解,所以就有了这个想法.这个入门篇分上下两篇.本文着重动手,用 ma ...
- apache maven pom setting
<?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Soft ...
- [ERROR] Failed to execute goal org.apache.maven.plugins:maven-archetype-plugin:2.4:create (default-cli) on project standalone-pom: Unable to parse configuration of 3: mojo org.apache.maven.plugins:
问题: [ERROR] Failed to execute goal org.apache.maven.plugins:maven-archetype-plugin:2.4:create (defau ...
- Apache Maven 入门篇 ( 上 )
作者:George Ma 写这个 maven 的入门篇是因为之前在一个开发者会的动手实验中发现挺多人对于 maven 不是那么了解,所以就有了这个想法. 这个入门篇分上下两篇.本文着重动手,用 mav ...
随机推荐
- 245. Shortest Word Distance III
题目: This is a follow up of Shortest Word Distance. The only difference is now word1 could be the sam ...
- alias 命令
功能说明:设置指令的别名. 语 法:alias[别名]=[指令名称] 参 数 :若不加任何参数,则列出目前所有的别名设置. 举 例 :ermao@lost-desktop:~$ alias ...
- MFC中快速应用OpenCV教程
论坛上看到非常经典的VS2008 + OpenCV 2.0下的配置过程: (这里用的是opencv2.0) 1. 文件 | 项目 | MFC | MFC应用程序 |(新名称如MFCtest)|next ...
- 【转载】git/github初级运用自如
之前了解过github,并在上面看了一些项目的源代码,于是自己也在github上创建了账户,希望以后有机会也把自己的项目托管在上面去.但是前提你要先了解git/github,下面的内容是从我的好基友虫 ...
- Image.FrameDimensionsList 属性备注
Image.FrameDimensionsList 属性 .NET Framework 2.0 获取 GUID 的数组,这些 GUID 表示此 Image 中帧的维数. 命名空间:System.D ...
- CentOS 6.5系统使用yum方式安装LAMP环境和phpMyAdmin详细过程
介绍如何在CentOs6.2下面使用YUM配置安装LAMP环境,一些兄弟也很喜欢使用编译的安装方法,个人觉得如果不是对服务器做定制,用yum安装稳定简单,何必去download&make&am ...
- Hibernate4.2.2使用Annotation配置
1.在hibernate官网下载hibernate-release-4.2.2.Final.zip并解压 2.新建一个java project工程(20130619_Hibernate4.2.2_An ...
- UVa 11762 (期望 DP) Race to 1
设f(x)表示x转移到1需要的次数的期望,p(x)为不超过x的素数的个数,其中能整除x的有g(x)个 则有(1-g(x)/p(x))的概率下一步还是转移到x,剩下的情况各有1/p(x)的概率转移到x/ ...
- windows2003 IIS6网络负载平衡设置
问题 随着计算机技术的不断发展,单台计算机的性能和可靠性越来越高.但现实中还是有许多应用是单台计算机难以达到,例如: 1.银行存储用户数据的数据库服务器必须保证24小时不间断的运转,并在发生严重硬件故 ...
- 五大主流SQL数据库
一. 开放性 1. SQL Server 只能在windows上运行,没有丝毫的开放性,操作系统的系统的稳定对数据库是十分重要的.Windows9X系列产品是偏重于桌面应用,NT server只适合中 ...