keesun / mod-socket-io

Vert.x Socket.IO Module

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ver.x 2.0 - AbstractConnection Issue

WoongkyumKim opened this issue · comments

Vert.x 2.1에서 컴파일시 AbstractConnection 클래스가 없다는 컴파일 에러가 나옵니다.

파일명 : RequestUtil.java 의 "getRemoteAddress"를 아래 처럼 수정하면 되네요..

InetSocketAddress address = req.netSocket().remoteAddress();
host = address.getHostString();

메이븐 중앙 메이븐에서 의존성을 확인해 봤더니 2.1은 아직 m2가 최신인것 같습니다.
http://mvnrepository.com/artifact/io.vertx/vertx-core
흠..m버전은 나중에 어떻게 바뀔지 모르니 2.1 final이 나오기 전까지는 이 작업을 조금 미루면 어떨까요.
대신 2.0.2-final이 나왔던데 제가 지금 업데이트 해둔건 2.0.1-final 까지더라구요. 이걸 0.2로 올리는 작업을 해두겠습니다.

문제 원인과 해결책까지 제보해주셔서 감사합니다. :)