-
Akka Configakka & pekko/actors 2023. 7. 17. 19:53
- typesafe config 를 사용
- ActorSystem 을 생성할 때 옵션으로 config 를 지정할 수 있음
import akka.actor.{Actor, ActorLogging, ActorSystem, Props} import com.typesafe.config.ConfigFactory val actorSystem: ActorSystem = ActorSystem(name = "actorDemo", config=ConfigFactory.load(...))
- ActorSystem 생성할 때 config 옵션이 지정되지 않으면 /resources/application.conf 파일을 읽어 설정함
'akka & pekko > actors' 카테고리의 다른 글
Akka TestProbes (0) 2023.07.18 Akka Test (0) 2023.07.18 Akka Logging (0) 2023.07.17 Child Actor (0) 2023.07.17 Behavior control (become / unbecome) (0) 2023.07.17