美文网首页
Hook in the Bootstrap Process

Hook in the Bootstrap Process

作者: 蒲印MkII | 来源:发表于2018-05-03 10:40 被阅读0次

    GWTP的目标是在初始化新的项目时尽量的简单。但是,你有可能在某些情况下执行被GWTP管理的代码。这种情况下有几个方案可供选择:

    1. Bootstrapper: Use a Bootstrapper if you need to execute code after GWTP and GIN are initialized, but before the default place is shown.
      如果你需要执行的代码在GWTP和GIN被初始化之后,又在默认的place被显示前。

    2. Pre-Bootstrapper: 在GWTP被初始化前就执行

    3. GIN module registration: 你可以直接在你的.gwt.xml里注册一个GIN module.一个常见的场景是当你想拆分你的APP为不同的模块时。

    4. Ginjector Extensions: 注册使用Ginjector extensions :当你需要用Ginjector来生成代码时,且它本身被GWTP生成。

    5. Custom Entry Point:如果没有其他的选项,你可以用老式的方式:使用一个切入点(entrypoint)

    相关文章

      网友评论

          本文标题:Hook in the Bootstrap Process

          本文链接:https://www.haomeiwen.com/subject/rdrkrftx.html