priorities property

List<String> priorities

A list of class name regex patterns (case sensitive) to use to determine the order of injection.

The first pattern in the list will be injected first, while the last pattern in the list will be injected last.

The priority value decrements by 10 for each pattern, starting at 50.

e.g.

priorities:
   - ^A # Priority = 50
   - ^B # Priority = 40
   - ^C # Priority = 30

Implementation

List<String> get priorities;