GAE学习

看到google提供的gae服务,心动了下,想在gae上做点事情。

sdk还是要下的,地址:http://code.google.com/intl/zh-CN/appengine/,有中文文档,入门教程,很简单

实际在code.google.com上的地址是http://code.google.com/p/googleappengine/

 

gae包含eclipse插件,发布和部署都很简单,貌似我已经改行idea了。。

idea也包含gae插件,用了下,run的时候直接回打开个浏览器测试,很智能,不过写第一个demo的时候user库始终找不到,不知道怎么导类。。。

想了下还是maven比较方便,不知道有没有现成的maven插件,找了下,还真有。

地址:http://code.google.com/p/maven-gae-plugin/

 

照文档所说,create需要:

 

代码
    
      
mvn archetype:create - DarchetypeGroupId = net.kindleit - DarchetypeArtifactId = gae - archetype - gwt \
  - DarchetypeVersion = 0.5 . 0 - DgroupId = your.groupId - DartifactId = your - artifactId - DremoteRepositories = http: // maven-gae-plugin.googlecode.com/svn/repository

 


 

 

直接可以生成maven工程。暂时到 这里,晚了,睡觉。

你可能感兴趣的:(GAE)