I'm creating a new application using Akka, Scala and Spring. However all the examples I found online show a single dependency being injected. Since the syntax is different from Java, could anyone tell me what'd it look like with multiple DI?
Converting a Java Spring application to Scala
Example of single DI:
class HelloWorldController @Autowired() (nameService: Name) {