Closed
Description
The Spring Framework 5 reference documentation for @Autowired
states:
The required attribute of
@Autowired
is recommended over the@Required
annotation on setter methods. The required attribute indicates that the property is not required for autowiring purposes. The property is ignored if it cannot be autowired.
I think it should be "required=false
indicates that the property is not required...".
Please update it if you think I am correct.