@@ -42,16 +42,16 @@ What are the types of Dependency Injection Spring supports?
42
42
Injecting into bean properties
43
43
44
44
Autowiring. Types of autowiring.
45
- byName� Attempts to match all properties of the autowired bean with beans
46
- that have the same name (or ID) as the properties. Properties for which there�s
47
- no matching bean will remain unwired.
48
- byType� Attempts to match all properties of the autowired bean with beans
49
- whose types are assignable to the properties. Properties for which there�s no
50
- matching bean will remain unwired.
51
- constructor� Tries to match up a constructor of the autowired bean with
52
- beans whose types are assignable to the constructor arguments.
53
- autodetect� Attempts to apply constructor autowiring first. If that fails,
54
- byType will be tried.
45
+ byName Attempts to match all properties of the autowired bean with beans
46
+ that have the same name (or ID) as the properties. Properties for which there�s
47
+ no matching bean will remain unwired.
48
+ byType Attempts to match all properties of the autowired bean with beans
49
+ whose types are assignable to the properties. Properties for which there�s no
50
+ matching bean will remain unwired.
51
+ constructor Tries to match up a constructor of the autowired bean with
52
+ beans whose types are assignable to the constructor arguments.
53
+ autodetect Attempts to apply constructor autowiring first. If that fails,
54
+ byType will be tried.
55
55
56
56
What are inner beans.
57
57
Inner beans are beans that are defined within the scope of another bean.
@@ -77,10 +77,10 @@ What modules does Spring Framework have?
77
77
http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/overview.html
78
78
79
79
Could you please tell us about Spring? What is the most important feature(s) of Spring?
80
- ? Lightweight and minimally invasive development with plain old Java objects(POJOs)
81
- ? Loose coupling through dependency injection and interface orientation
82
- ? Declarative programming through aspects and common conventions
83
- ? Boilerplate reduction through aspects and templates
80
+ Lightweight and minimally invasive development with plain old Java objects(POJOs)
81
+ Loose coupling through dependency injection and interface orientation
82
+ Declarative programming through aspects and common conventions
83
+ Boilerplate reduction through aspects and templates
84
84
85
85
What are ORM�s Spring supports ?
86
86
Spring provides support for several persistence frameworks, including Hibernate,
0 commit comments