Merge pull request #8392 from kazuki43zoo:polish-doc

* pr/8392:
  Update doc about constructor injection
This commit is contained in:
Stephane Nicoll
2017-02-28 15:58:08 +01:00

View File

@@ -590,6 +590,24 @@ required `RiskAssessor` bean.
}
----
And if a bean has one constructor, you can omit the `@Autowired`.
[source,java,indent=0]
----
@Service
public class DatabaseAccountService implements AccountService {
private final RiskAssessor riskAssessor;
public DatabaseAccountService(RiskAssessor riskAssessor) {
this.riskAssessor = riskAssessor;
}
// ...
}
----
TIP: Notice how using constructor injection allows the `riskAssessor` field to be marked
as `final`, indicating that it cannot be subsequently changed.