问题
Is is possible to implement the client side of a Play Framework 2.x web application using GWT or Vaadin?
Play 1.x has a special module that provides GWT integration, but I can not find examples of the use of these technologies together in Play 2.x version. Can these technologies be integrated? Is there a module, or must some other approach be used?
回答1:
GWT and Play2 can work together seamlessly, just as GWT can be used with python and go backends.
Using GWT with Play2 has two parts, serving static files and client-server communication.
For the GWT produced static files (js, css, img..) you can just add them to the Play2
public
directory, and they will be accessible based on the routes configuration.For client-server communication your best bet is using a pure json-rest approach, as request-factory, gwt-rpc have some dependency on J2EE servlets.
There are plenty examples of providing a json/REST api with Play2, and plenty examples of interacting with json/REST APIs with GWT.
回答2:
Henri Kerola demoed this recently for play 2.x and will give a talk at javaone this year: http://www.youtube.com/watch?v=IwuqAh0VSek
回答3:
I found a project on github which integrates Vaadin with Play 2.2: https://github.com/henrikerola/play-vaadin-integration
回答4:
You can't use Vaadin with play2. Vaadin is basically a Java EE servlet that must live in a Java EE container such as Tomcat.
Play is not based on Java EE, it uses its own server. As for GWT all server side code needs a Java EE container. But if you just want the client side then it's totally possible as it is with any web framework. Just create json web services and remove server dependancies. For an example in php : http://gwtquickstart.blogspot.fr/2009/11/call-php-script-from-gwt.html
来源:https://stackoverflow.com/questions/12909826/how-to-integrate-gwt-or-vaadin-with-play-framework-2-0