회사에서 remote로
내가
개발한
분석기
프로그램에
붙어서
데이터를
가져
와야
할
것이
있어서
마침
분석기
프로그램이 spring을
쓰고
있는
참에
spring rmi를
사용하기로
했다...
http invoker도
있지만 web.xml 설정이
좀
더
들어가서.. 그냥 rmi로 -_-;
어차피
배치성으로
접근
할
거라
뭐...
서버쪽에는 xml 설정을
통해 rmi 서비스를
설정해주고
(설정
방법은 여기..)
clinet에서는
단일
어플리케이션이라서.. 그냥
내부에서
RmiClientInterceptor를
사용해서
바로
준비함.
1234567 | RmiClientInterceptor rmiClientInterceptor = new RmiClientInterceptor(); rmiClientInterceptor.setServiceUrl("rmi://xx.xx.xx.xx:1099/SearchService"); rmiClientInterceptor.setServiceInterface(com.tistory.devyongsik.web.service.RemoteSearchService.class); rmiClientInterceptor.afterPropertiesSet(); RemoteSearchService rmiService = (RemoteSearchService)new ProxyFactory(RemoteSearchService.class, rmiClientInterceptor).getProxy();
rmiService.search(); |
'IT노트 > eGov&Spring F/W' 카테고리의 다른 글
★★★★Spring Remote (RMI) 예제 (0) | 2015.01.30 |
---|---|
Spring RMI (0) | 2015.01.30 |
Spring ContextLoaderListener context-param 관련 (0) | 2015.01.30 |
Spring Remote (RMI) 예제 (0) | 2015.01.30 |
[Spring 레퍼런스] 20장 스프링을 사용한 원격작업(remoting) 및 웹 서비스 #1 (0) | 2015.01.30 |