turbo_laser
turbo_laser

Reputation: 261

Scala instantiate objects from String classname

I have a trait, Action, that many different classes, ${whatever}Action, extend. I'd like to make the class that is in charge of instantiating these Action objects dynamic in the sense that it will not know which of the extending objects it will be building until it is passed a String with the name. I want it to take the name of the class, then build the object based on that String.

I'm having trouble finding a concise/recent answer regarding this simple bit of reflection. I was hoping to get some suggestions as to either a place to look, or a slick way of doing this.

Upvotes: 8

Views: 4494

Answers (1)

Philosophus42
Philosophus42

Reputation: 472

You can use reflections as follows:

def actionBuilder(name: String): Action = {
  val action = Class.forName("package." + name + "Action").getDeclaredConstructor().newInstance()
  action.asInstanceOf[Action]
}

Upvotes: 8

Related Questions