原型模式(Prototype)

原型模式 和单例模式是正反的一对关系。Hasor 默认使用的是原型模式,因此开发者不需要做任何配置。

  1. @Prototype()public class AopBean { }

或者您可以通过 ApiBinder 方式进行代码形式声明:

  1. public class MyModule implements Module {
  2. public void loadModule(ApiBinder apiBinder) {
  3. apiBinder.bindType(PojoInfo.class).asEagerPrototype();
  4. }
  5. }