Configurate nested Router in Akka
问题 I have some nested Router, which shall be created FromConfig() . What I want is something like this: test { akka.actor.deployment { /worker { router = round-robin nr-of-instances = 5 /slave { router = broadcast nr-of-instances = 4 } } } } But if I run this, I get an exception, telling me, that [akka://test/user/worker/slave] needs external configuration and suggests application.conf. The names are correct and without the nested routing it worked. What am I missing? Edit I tried another way to