Details
Description
The latest M1 release for STS 2.6.0 contains a new feature of adding @Autowired to a constructor using the quick fix feature. Would be cool, if you could take that even one step further by offering an option to generate a constructor for all final fields of a class and annotate with @Autowired in one go:
public class MyService { private final MyFooRepo fooRepo; private final MyBarRepo barRepo; }
Currently this requires to let Eclipse generate the constructor for the fields and triggering the quick fix newly introduced.