Dependency Injection
-
Software Development
Flutter: Injecting Cleanliness
Flutter, Google’s popular cross-platform UI toolkit, has gained immense popularity due to its ability to create beautiful and performant apps…
Read More » -
Enterprise Java
Spring Prototype Beans with Runtime Arguments
Spring offers various bean scopes, with the default being singleton, which creates a single instance throughout the application. Prototype scope,…
Read More » -
Web Development
Creating High-Performance Web Applications with ActiveJ
In this article, we will create several web applications using a single full-stack ActiveJ framework. 1. Why using ActiveJ? Most…
Read More » -
Core Java
ActiveJ: A New, Alternative Java Platform
ActiveJ is a new, open-source Java platform for quickly building efficient web, cloud, and microservices solutions for high performance environments.
Read More » -
Software Development
Your DI framework is killing your code
I read a really interesting post recently looking at the difference between typical OO code and a more functional style. There’s a…
Read More » -
Core Java
Is Getter DI A Good Idea?
Sometimes, you may hear about dependency injection done via a getter method, which subclasses override or mock frameworks fake for…
Read More » -
Software Development
In today’s post-OO world, is dependency injection still relevant?
It’s 2015. Most of the new popular languages are more or less functional. The old ones, like Java, gain functional…
Read More » -
Core Java
Dependency Injection – Field vs Constructor vs Method
Hi, today I would like to discuss in short different ways of injecting dependencies into your classes. In general you have…
Read More » -
Enterprise Java
Dependency injection pitfalls in Spring
There are three injection variants in Spring framework: Setter-based injection Constructor-based injection Field-based injection Each of those mechanisms has advantages and…
Read More »