hessian-client 클 라 이언 트
2615 단어 hessian
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.leech</groupId>
<artifactId>hessian-client</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>hessian-client</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>hessian</groupId>
<artifactId>hessian</artifactId>
<version>4.0.37</version>
</dependency>
</dependencies>
</project>
hessian-server 의 MyCar.java 와 HelloHessian.java 에 대응 하 는 jar 를 pom.xml 에 의존 도 를 추가 합 니 다.
새 테스트 용례 HessianClient Test.java 는 다음 과 같 습 니 다.
package com.leech.hessian.client;
import java.net.MalformedURLException;
import java.util.Map;
import com.caucho.hessian.client.HessianProxyFactory;
import com.leech.hessian.model.MyCar;
import com.leech.hessian.service.HelloHessian;
public class HessianClientTest {
/**
* @param args
*/
public static void main(String[] args) {
String url = "http://localhost:8080/hessian-server/HessianService";
HessianProxyFactory factory = new HessianProxyFactory();
try {
HelloHessian hello = (HelloHessian) factory.create(HelloHessian.class, url);
System.out.println(hello.sayHello());
MyCar car = hello.getMyCar();
System.out.println(car.toString());
for (Map.Entry<String, String> entry : hello.myBabays().entrySet()) {
System.out.println(entry.getKey() + " " + entry.getValue());
}
for (String str : hello.myLoveFruit()) {
System.out.println(str);
}
} catch (MalformedURLException e) {
e.printStackTrace();
}
}
}
웹 서비스 기능 을 실현 할 수 있 습 니 다.