Creating the Context
Last updated
Was this helpful?
Last updated
Was this helpful?
Let's now get hands on creating different through the context.
The principle is always the same: use DiContextFactory.createContext to pass the with their .
We will now show all the different use cases starting from the simple cases to the complex ones.
The simplest bean to create is a :
Adding values let's you access them directly
The real value of the dependency injection is to get it to create complex objects for you.
This is the case for , (functions or class definitions)
When you need to add hints, which class constructor or function are parameterless, you can do this by passing the class or the function reference directly.
Now that we have seen the simplest case of parameterless hints, let's see what would happen if we needed to specify an internal dependency.
Let's also show something closer to a real world case, let's imagine that the strings to be used for MyAmazingClass could be configured from the outside as you might need to if your applications supports many locales.
The same principle that applies to classes can also apply to functions.
Is your choice when hinting if you want to use a full fledge class or a function that returns something.
We can see this in the following example
And also we can see how we can use function hints and internal dependencies.
Because functions and class are always assumed to be hints, you will find that it might now work as you expect if you need to have a dependency to be resolved to a function or a class...
For instance:
The bean definition in the example above 'sayHello' is considered to be a hint (is a function), so if you access it through the context, the actual result would be the string 'hello'
If you wanted the function to be used as a value, and not as a hint, you will have to wrap it into an additional function.
This will trick the framework in resolving it to your original function, for instance to receive as a bean the function sayHello, instead of its returning value:
The real power from dependency injection is that it lets you combine any level of hints and/or values.
As you can see in the example above, we have:
stockEndpoint: A hint for the class Endpoint. Note that the constructor receives a parameter named 'baseUrl', this matches the aux bean definition, which means that it will be injected into the stockEndpoint bean.
stockService. A hint for the class StockService, the bean created in this context will receive injected through the constructor the stockEndpoint.
A side effect of working with plain objects to store the context, is that as with as any other normal object, you can use functions to generate the context, or that you can change the context after it has been created.
You will see in the next section how this combined with the other features from dependency injection will let you for example write simpler integration tests.
baseUrl: An used to initialise an Endpoint