Skip to content

Commit c412a62

Browse files
authored
Merge pull request citerus#19 from kevinojt/fix-bean-init-order
Fix bean init order.
2 parents 34c2b84 + 0de9f8d commit c412a62

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/java/se/citerus/dddsample/config/DDDSampleApplicationContext.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,19 +40,19 @@ public class DDDSampleApplicationContext {
4040
VoyageRepository voyageRepository;
4141

4242
@Autowired
43-
RoutingService routingService;
43+
GraphTraversalService graphTraversalService;
4444

4545
@Autowired
46-
HandlingEventRepository handlingEventRepository;
46+
RoutingService routingService;
4747

4848
@Autowired
4949
HandlingEventFactory handlingEventFactory;
5050

5151
@Autowired
52-
ApplicationEvents applicationEvents;
52+
HandlingEventRepository handlingEventRepository;
5353

5454
@Autowired
55-
GraphTraversalService graphTraversalService;
55+
ApplicationEvents applicationEvents;
5656

5757
@Autowired
5858
PlatformTransactionManager platformTransactionManager;

0 commit comments

Comments
 (0)