CloudFoundry 中的 GWT 会起作用吗?
我的 Web 应用程序是使用 Java 制作的,特别是使用 Google Web Toolkit (GWT)。后端使用了
GWT RPC
RemoteServiceServlet
Hibernate/Java
MongoDB (通过 Morphia)
- 和其他 Java 库
我真的根本没有使用任何 Spring 框架,我的 Web 应用程序是否能够部署在 CloudFoundry MicroCloud 和 CloudFoundry.com 中托管?
我是否需要重新配置已在具有 MySQL 和 MongoDB 数据库的 Tomcat 服务器中测试和部署的 Web 应用程序?
My web application is made with Java, specifically with the Google Web Toolkit (GWT). The back-end used
GWT RPC
RemoteServiceServlet
Hibernate/Java
MongoDB (via Morphia)
- and other Java libraries
I really did not use any Spring framework at all, will my web application be able to be deployed in a CloudFoundry MicroCloud and in CloudFoundry.com hosting?
Will I be needing to reconfiguring my web application that has been tested and deployed in a Tomcat Server with MySQL and MongoDB database?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
GWT 应该不是问题。
如果要部署不使用 Spring 的 Java Web 应用程序,可以将其部署为 Java Web 应用程序,然后手动解析 VCAP_SERVICES 以从应用程序配置数据源。
请参阅 http有关详细信息,请访问://blog.springsource.org/2011/10/13/using-cloud-foundry-services-with-spring-part-1-the-basics/
https://github.com/SpringSource/cloudfoundry-samples/tree/master /hello-java
GWT should not be an issue.
If you want to deploy a java web app not using Spring, you can deploy it as a java web app, then parse the VCAP_SERVICES manually to configure your data sources from the application.
See http://blog.springsource.org/2011/10/13/using-cloud-foundry-services-with-spring-part-1-the-basics/ for details
https://github.com/SpringSource/cloudfoundry-samples/tree/master/hello-java
为什么行不通?
如果不会,那至少不是因为 GWT:GWT-RPC 在 AppEngine 中运行,因此它没有理由在 CloudFoundry 中无法工作。
Why wouldn't it work?
In the event it wouldn't, that wouldn't be because of GWT at least: GWT-RPC runs in AppEngine, so there's no reason it wouldn't work in CloudFoundry.