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.
- tags: dependency-injection, oop
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.
- 📆 published on: 2021-06-22
- tags: dependency-injection, security-tools
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...
- tags: angular, dependency-injection
https://github.com/magic003/alice
Additive dependency injection container for Golang.
- tags: go, dependency-injection
- source code
https://github.com/uber-go/dig
A reflection based dependency injection toolkit for Go.
- tags: go, dependency-injection
- source code
A dependency injection based application framework for Go (built on top of dig).
- tags: go, dependency-injection
- source code
https://github.com/defval/inject
A reflection based dependency injection container with simple interface.
- tags: go, dependency-injection
- source code
Strict Runtime Dependency Injection for Golang.
- tags: go, dependency-injection
- source code
CDI extension framework.
- tags: java, dependency-injection
https://google.github.io/dagger
Compile-time injection framework without reflection.
- tags: java, dependency-injection
https://github.com/zsoltherpai/feather
Ultra-lightweight, JSR-330-compliant dependency injection library.
- tags: java, dependency-injection
- source code
https://github.com/Netflix/governator
Extensions and utilities that enhance Google Guice.
- tags: java, dependency-injection
- source code
https://github.com/google/guice
Lightweight and opinionated framework that completes Dagger.
- tags: java, dependency-injection
- source code
Lightweight and dynamic dependency injection framework.
- tags: java, dependency-injection
https://github.com/vanillasource/jaywire
Lightweight dependency injection framework.
- tags: java, dependency-injection
- source code
http://docs.jboss.org/weld/reference/latest/en-US/html_single/
CDI: Contexts and Dependency Injection for the Java EE platform
- tags: weld, dependency-injection, javaee, docs
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...
- 📆 published on: 2013-11-22
- tags: dependency-injection, javaee, spring
https://antoniogoncalves.org/2011/05/03/injection-with-cdi-part-i/
There are three parts:
- Injection with CDI (Part I) - Focused on default injection and qualifiers
- [Injection with CDI (Part II...
- 📆 published on: 2011-09-25
- tags: dependency-injection, cdi, javaee
- source code
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...
- 📆 published on: 2012-01-01
- tags: design-patterns, dependency-injection
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-...
- 📆 published on: 2009-02-19
- tags: dependency-injection