restlet 不同平台框架的区别


Restlet Framework 包括 Java SE,Java EE,Google App Engine,Google Web Toolkit,Android,OSGi Environment。

  • Java Standard Edition: this edition is aimed for development and deployment of applications inside a regular Java virtual machine using the internal HTTP server of the Restlet Engine, or a pluggable one such as Jetty.

  • Java Enterprise Edition: this edition is aimed for development and deployment of applications inside Java EE application server, or more precisely inside Servlet containers such as Apache Tomcat.

  • Google App Engine: due to the restrictions of the GAE, we need to provide an adaptation of Restlet for this environment. GAE is based on Java 6, with a restricted list of APIs.

  • Android: this edition is a port of the Restlet Framework to the Android mobile OS.

  • Google Web Toolkit: this edition is a client-side port of the Restlet Framework to GWT 2.2 and above releases.

  • OSGi Environments: this edition is dedicated to OSGi environments such as Eclipse Equinox and Apache Felix and makes space for OSGi specific features in the framework. It is only recommended if you intend to develop OSGi applications.

你可能感兴趣的:(框架,Restlet)