citerus / dddsample-core

This is the new home of the original DDD Sample app (previously hosted at sf.net)..
MIT License
4.94k stars 1.47k forks source link

Replace setter-based injection for ExternalRoutingService #61

Closed orende closed 1 year ago

orende commented 1 year ago

Why

The ExternalRoutingService uses an old style of dependency injection (setter-based DI) that is no longer recommended for use by the Spring developers.

What

Replaces the setter-based DI with constructor-based DI.

(This PR was split out from #59)