I came across an example of @Autowired
public class EmpManager {
@Autowired
private EmpDao empDao;
}
I was curious about how the empDao get sets since there are no setter methods and it is private.
|
I came across an example of @Autowired
I was curious about how the empDao get sets since there are no setter methods and it is private. |
|||||
|
|
Java allows access controls on a field or method to be turned off (yes, there's a security check to pass first) via the |
|||||||||||
|
|
No need for any setter, you just have to declare the Class EmpDao with the annotation @component in order that Spring identifies it as part of the components which are contained in the ApplicationContext ... You have 2 solutions:
< context:component-scan base-package="package"/> < context:annotation-config/> AND to use the spring annotation to declare the classes that your spring container will manage as components ex:
AND to annotate its reference by @Autowired:
Autowiring happens by placing an instance of one bean into the desired field in an instance of another bean. Both classes should be beans, i.e. they should be defined to live in the application context. Spring knows the existence of the beans EmpDao and MyClass and will instantiate automatically an instance of EmpDao in MyClass |
||||
|
|
|
Java allows you to interact with private members of a class via reflection. Check out ReflectionTestUtils, which is very handy for writing unit tests. |
|||
|
|
|
Spring uses the CGLib API to provide autowired dependency injection. References
Further Reading
|
|||||
|