자바 원 격 호출 (2) 간단 한 서비스 프레임 워 크 실현
자바 프로그램 으로 간단 한 서비스 프레임 워 크 통신 프로 토 콜 을 작성 합 니 다: socket 네트워크 io: bio 스 레 드 방식: 무한 스 레 드 탱크 원 격 호출 투명 화 방안: jdk 동적 에이전트 Proxy 직렬 화: 자바 자체
핵심 코드 붙 이기:
1. 서비스 방법 발표
/**
*
*
* @param service
*
* @param port
*
* @throws Exception
*/
public static void export(final Object service, final int port)
throws Exception {
if (service == null)
throw new IllegalArgumentException("service instance == null");
if (port <= 0 || port > 65535)
throw new IllegalArgumentException("Invalid port " + port);
System.out.println("Export service " + service.getClass().getName()
+ " on port " + port);
/* socket, 1000 */
ServerSocket server = new ServerSocket(port, 1000);
ExecutorService executor = Executors.newCachedThreadPool();
;
for (;;) {
try {
// client socket
final Socket socket = server.accept();
executor.execute(new Runnable() {
@Override
public void run() {
try {
try {
ObjectInputStream input = new ObjectInputStream(
socket.getInputStream());
try {
//
String methodName = input.readUTF();
//
Class<?>[] parameterTypes = (Class<?>[]) input
.readObject();
Object[] arguments = (Object[]) input
.readObject();
ObjectOutputStream output = new ObjectOutputStream(
socket.getOutputStream());
try {
Method method = service.getClass()
.getMethod(methodName,
parameterTypes);
Object result = method.invoke(service,
arguments);
output.writeObject(result);
} catch (Throwable t) {
output.writeObject(t);
} finally {
output.close();
}
} finally {
input.close();
}
} finally {
if (socket != null) {
socket.close();
}
}
} catch (Exception e) {
e.printStackTrace();
}
}
});
} catch (Exception e) {
e.printStackTrace();
}
}
}
2. 호출 서비스
/**
*
*
* @param <T>
*
* @param interfaceClass
*
* @param host
*
* @param port
*
* @return
* @throws Exception
*/
@SuppressWarnings("unchecked")
public static <T> T refer(final Class<T> interfaceClass, final String host,
final int port) throws Exception {
if (interfaceClass == null)
throw new IllegalArgumentException("Interface class == null");
if (!interfaceClass.isInterface())
throw new IllegalArgumentException("The "
+ interfaceClass.getName() + " must be interface class!");
if (host == null || host.length() == 0)
throw new IllegalArgumentException("Host == null!");
if (port <= 0 || port > 65535)
throw new IllegalArgumentException("Invalid port " + port);
System.out.println("Get remote service " + interfaceClass.getName()
+ " from server " + host + ":" + port);
return (T) Proxy.newProxyInstance(interfaceClass.getClassLoader(),
new Class<?>[] { interfaceClass }, new InvocationHandler() {
public Object invoke(Object proxy, Method method,
Object[] arguments) throws Throwable {
// socket ,
// Socket socket = new Socket(host, port);
Socket socket = new Socket();
// socket.close() 10
socket.setSoLinger(true, 10);
socket.connect(new InetSocketAddress(host, port));
try {
// socket
ObjectOutputStream output = new ObjectOutputStream(
socket.getOutputStream());
try {
output.writeUTF(method.getName());
output.writeObject(method.getParameterTypes());
output.writeObject(arguments);
//
ObjectInputStream input = new ObjectInputStream(
socket.getInputStream());
try {
Object result = input.readObject();
if (result instanceof Throwable) {
throw (Throwable) result;
}
return result;
} finally {
input.close();
}
} finally {
if (output != null) {
output.close();
}
}
} finally {
if (socket != null) {
socket.close();
}
}
}
});
}
첨부 파일 을 전송 할 수 없 습 니까?
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.