梅文 + GAE 一步一步
我正在寻找有关如何“mavenize”由 Google Eclipse 插件创建的 Google AppEngine 项目的基本教程。
如果这太困难了,如何创建 Maven 项目,为其添加 GAE 支持,然后将其导入 Eclipse 并从那里使用 GooglePlugin?
Ps 如果我也想要 SpringMVC 怎么办?
I'm looking for a basic tutorial on how to "mavenize" a Google AppEngine project, created by Google Eclipse Plugin.
In case that's too difficult, how to create a Maven project, add GAE support to it then import it into Eclipse and work with the GooglePlugin from there?
P.s. What if I wanted SpringMVC,too?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定如何从 Eclipse 创建 Maven 项目,但是从头开始创建它非常容易。对于 gae,您可以使用
net.kindleit:maven-gae-plugin
请参阅 http ://www.kindleit.net/maven_gae_plugin/index.html,它可以为你生成pom.xml
。或者只是使用它,但不要忘记添加 GAE 依赖项:
和存储库:
然后您可以使用
mvn eclipse:eclipse
生成 eclipse配置 开发服务器可以通过
mvn gae 启动:运行
,通过mvn gae:deploy
部署要使用Spring,请将依赖项添加到工件
spring-webmvc
、spring-core
和org.springframework
组下的spring-context
I'm not sure how to create maven project from eclipse, but creating it from scratch is very easy. For gae you can use
net.kindleit:maven-gae-plugin
See http://www.kindleit.net/maven_gae_plugin/index.html, it can generatepom.xml
for you. Or just use it asbut don't forget to add GAE dependencies:
and repositories:
and then you can generate eclipse config by using
mvn eclipse:eclipse
Dev server can be started by
mvn gae:run
, deployment bymvn gae:deploy
To use Spring, add dependencies to artifacts
spring-webmvc
,spring-core
andspring-context
under grouporg.springframework