Akka에서 ActorSystem을 정의할 때, 영어 대소문자, 숫자와 -,_만 된다.(-와 _는 앞에 있으면 안된다)
Exception 나는 경우
val system = ActorSystem("MonitoringTest ")
val system = ActorSystem("-MonitoringTest-")
Exception 내용이다.
java.lang.IllegalArgumentException: invalid ActorSystem name [MonitoringTest ], must contain only word characters (i.e. [a-zA-Z0-9] plus non-leading '-' or '_')
문제가 발생하지 않는 경우의 예
val system = ActorSystem("MonitoringTest")
val system = ActorSystem("MonitoringTest1-")
'scala' 카테고리의 다른 글
[scala/spark] Option 관점에서 본 map/flatmap 예제 (0) | 2017.03.13 |
---|---|
컬렉션의 forall과 exists 메소드 (0) | 2017.03.13 |
[play2] play2(guice) + kafka 0.10.1.1 sample (0) | 2017.03.10 |
[scala] 컬렉션의 head,last,init,lastOption,tail 예제 (0) | 2017.03.09 |
[scala] 컬렉션의 take,drop,dropRight,takeWhile,slice 예제 (0) | 2017.03.09 |