메뉴 건너뛰기

Bigdata, Semantic IoT, Hadoop, NoSQL

Bigdata, Hadoop ecosystem, Semantic IoT등의 프로젝트를 진행중에 습득한 내용을 정리하는 곳입니다.
필요한 분을 위해서 공개하고 있습니다. 문의사항은 gooper@gooper.com로 메일을 보내주세요.


Hello world서비스 생성시 HelloServiceImpl.java에서

 - The method getMessage() is undefined for the type HelloEvent.GreetingMessageChanged
 - The method getName() is undefined for the type HelloEvent.GreetingMessageChanged

오류가 발생하는데 최초 생성하는 로직에서 해당 메서드 생성을 누락한거 같다.


그래서 hello-impl/../../hello/impl/HelloEvent.java파일에

 public String getName() {
  return name;
 }

 public String getMessage() {
  return message;
 }

를 추가해주고 컴파일 하면 정상적으로 컴파일 된다.

A personal place to organize information learned during the development of such Hadoop, Hive, Hbase, Semantic IoT, etc.
We are open to the required minutes. Please send inquiries to gooper@gooper.com.

위로