美文网首页
依赖注入的方式

依赖注入的方式

作者: _NOR | 来源:发表于2018-12-11 20:00 被阅读0次

    构造器注入(constructor injection)

    public class Product {
      private Category category;
      public Product(Category category) {
        this.category = category;
      }
    }
    

    Set 注入

    public class Product {
      private Category category;
      public void setCategory(Category category) {
        this.category = category;
      }
    }
    

    静态工厂方法注入

    示例工厂方法注入

    相关文章

      网友评论

          本文标题:依赖注入的方式

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