GWT Dynamic loading using GWT.create() with String literals instead of Class literals

后端 未结 9 1226
一个人的身影
一个人的身影 2020-12-14 10:11

GWT.create() is the reflection equivalent in GWT, But it take only class literals, not fully qualified String for the Class name. How do i dynamically create classes with

9条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-14 10:52

    It is possible, albeit tricky. Here are the gory details:

    If you only think as GWT as a straight Java to JS, it would not work. However, if you consider Generators - Special classes with your GWT compiler Compiles and Executes during compilation, it is possible. Thus, you can generate java source while even compiling.

    I had this need today - Our system deals with Dynamic resources off a Service, ending into a String and a need for a class. Here is the solutuion I've came up with - btw, it works under hosted, IE and Firefox.

    • Create a GWT Module declaring:
      • A source path
      • A Generator (which should be kept OUTSIDE the package of the GWT Module source path)
      • An interface replacement (it will inject the Generated class instead of the interface)
    • Inside that package, create a Marker interface (i call that Constructable). The Generator will lookup for that Marker
    • Create a base abstract class to hold that factory. I do this in order to ease on the generated source code
    • Declare that module inheriting on your Application.gwt.xml

    Some notes:

    • Key to understanding is around the concept of generators;
    • In order to ease, the Abstract base class came in handy.
    • Also, understand that there is name mandling into the generated .js source and even the generated Java source
    • Remember the Generator outputs java files
    • GWT.create needs some reference to the .class file. Your generator output might do that, as long as it is referenced somehow from your application (check Application.gwt.xml inherits your module, which also replaces an interface with the generator your Application.gwt.xml declares)
    • Wrap the GWT.create call inside a factory method/singleton, and also under GWT.isClient()
    • It is a very good idea to also wrap your code-class-loading-calls around a GWT.runAsync, as it might need to trigger a module load. This is VERY important.

    I hope to post the source code soon. Cross your fingers. :)

提交回复
热议问题