Merge pull request #8392 from kazuki43zoo:polish-doc

* pr/8392:
  Update doc about constructor injection
pull/8346/head
Stephane Nicoll 8 years ago
commit f014be59f7

@ -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 TIP: Notice how using constructor injection allows the `riskAssessor` field to be marked
as `final`, indicating that it cannot be subsequently changed. as `final`, indicating that it cannot be subsequently changed.

Loading…
Cancel
Save