Skip to content

Latest commit

 

History

History
142 lines (121 loc) · 7.97 KB

dependency-injection.md

File metadata and controls

142 lines (121 loc) · 7.97 KB

Bookmarks tagged [dependency-injection]

https://freecontent.manning.com/understanding-constructor-injection/

Constructor Injection is the act of statically defining the list of required Dependencies by specifying them as parameters to the class’s constructor.


https://blog.wescale.fr/2021/06/22/securisation-du-cycle-de-developpement-applicatif-analyse-des-dep...

La sécurité applicative est un enjeu qui doit être pris en compte dès la conception du projet, chaperonné tout au long du cycle de développement.


https://angular.io/guide/dependency-injection

In Angular, the DI framework provides declared dependencies to a class when that class is instantiated. This guide explains how DI works in Angular, and how you use it to make your apps flexible, effi...


https://github.com/magic003/alice

Additive dependency injection container for Golang.


https://github.com/uber-go/dig

A reflection based dependency injection toolkit for Go.


https://github.com/uber-go/fx

A dependency injection based application framework for Go (built on top of dig).


https://github.com/defval/inject

A reflection based dependency injection container with simple interface.


https://github.com/Fs02/wire

Strict Runtime Dependency Injection for Golang.


https://deltaspike.apache.org

CDI extension framework.


https://google.github.io/dagger

Compile-time injection framework without reflection.


https://github.com/zsoltherpai/feather

Ultra-lightweight, JSR-330-compliant dependency injection library.


https://github.com/Netflix/governator

Extensions and utilities that enhance Google Guice.


https://github.com/google/guice

Lightweight and opinionated framework that completes Dagger.


https://javaee.github.io/hk2

Lightweight and dynamic dependency injection framework.


https://github.com/vanillasource/jaywire

Lightweight dependency injection framework.


http://docs.jboss.org/weld/reference/latest/en-US/html_single/

CDI: Contexts and Dependency Injection for the Java EE platform


http://olivergierke.de/2013/11/why-field-injection-is-evil/

I’m quite frequently getting pulled into discussions on Twitter about the different flavors of Dependency Injection. Also, I’ve repeatedly expressed my distaste for field injection but as Twitter is n...


https://antoniogoncalves.org/2011/05/03/injection-with-cdi-part-i/

There are three parts:


http://blog.schauderhaft.de/2012/01/01/the-one-correct-way-to-do-dependency-injection/

A couple of weeks ago a coworker told me that they have a little utility in their projects in order to set private fields for tests. He kind of claimed they needed that since they are using Spring, wh...


[

Constructor Injection vs. Setter Injection](http://misko.hevery.com/2009/02/19/constructor-injection-vs-setter-injection/) http://misko.hevery.com/2009/02/19/constructor-injection-vs-setter-injection/

There seems to be two camps in dependency-injection: (1) The constructor-injection camp and (2) the setter-injection camp. Historically the setter-injection camp come from spring, whereas constructor-...