资 源 简 介
What can it do?
The framework provides an interface for GWT to call server-side PHP functions and it does the JSON serialization/de-serialization of arguments and result values.
It can handle the following data types:
* All primitive types
* All wrapped primitives
* String
* Date
* Objects implementing the PHPObject interface
* Lists of the previous types
How does it do it?
There is no reflection in the client-side emulated java environment in GWT. This makes (de)serialization a bit complicated. To get over this limitation, I started to experiment with code generation (for details click here, here, here, or here). Then I found