Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2c1e98f

Browse files
author
golonzovsky
committed
bean typesformatting
1 parent 470866b commit 2c1e98f

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

Spring

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -42,16 +42,16 @@ What are the types of Dependency Injection Spring supports?
4242
Injecting into bean properties
4343

4444
Autowiring. Types of autowiring.
45-
byNameAttempts 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-
byTypeAttempts 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-
constructorTries to match up a constructor of the autowired bean with
52-
beans whose types are assignable to the constructor arguments.
53-
autodetectAttempts 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.
5555

5656
What are inner beans.
5757
Inner beans are beans that are defined within the scope of another bean.
@@ -77,10 +77,10 @@ What modules does Spring Framework have?
7777
http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/overview.html
7878

7979
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
8484

8585
What are ORM�s Spring supports ?
8686
Spring provides support for several persistence frameworks, including Hibernate,

0 commit comments

Comments
 (0)