반응형
Akka Classic은 크게 4가지 입니다.
해당 4가지를 조금 디테일하게 보면 아래와 같습니다.
우선 Akka의 가장 핵심인 Actors에 대해서 알아보겠습니다.
- Dependency
- Classic Actors
- Classic Supervision
- Classic Fault Tolerance
- Classic Dispatchers
- Classic Mailboxes
- Classic Routing
- Classic FSM
- Classic Persistence
- Testing Classic Actors
language는 Scala로 진행!!
우선은 가장 간단한 디펜던시 설정 입니다.
Dependency
The Akka dependencies are available from Akka’s library repository.
To access them there, you need to configure the URL for this repository.
resolvers += "Akka library repository".at("https://repo.akka.io/maven")
To use Classic Akka Actors, you must add the following dependency in your project:
val AkkaVersion = "2.10.2"
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % AkkaVersion,
"com.typesafe.akka" %% "akka-testkit" % AkkaVersion % Test
)
참고 - https://doc.akka.io/libraries/akka-core/current/index-actors.html#dependency
간단하게 살펴보았고 다음으로는 본격적으로 Classic Actors를 학습하겠습니다.

반응형
'Data Platform > Akka' 카테고리의 다른 글
Akka에서 Actor 생성 시 금지하는 방식 (0) | 2025.03.27 |
---|---|
Akka Classic (0) | 2025.03.25 |
Akka HelloWorld (0) | 2025.03.24 |