Skip to content

Commit 8369a24

Browse files
黄水清黄水清
黄水清
authored and
黄水清
committed
添加header支持
1 parent 3e61b75 commit 8369a24

7 files changed

+191
-6
lines changed

maven2/pom.xml

+9-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<groupId>com.caucho</groupId>
77
<artifactId>hessian</artifactId>
88
<packaging>jar</packaging>
9-
<version>4.0.51.3</version>
9+
<version>4.0.51.4</version>
1010
<name>hessian-${project.version}</name>
1111
<url>http://hessian.caucho.com</url>
1212
<description>当前修改版,与spring4集成,可调用hessian3.1.3服务</description>
@@ -47,10 +47,16 @@
4747
<artifactId>javax.servlet-api</artifactId>
4848
<version>3.1.0</version>
4949
</dependency>
50+
<dependency>
51+
<groupId>org.springframework</groupId>
52+
<artifactId>spring-web</artifactId>
53+
<version>4.3.14.RELEASE</version>
54+
<scope>provided</scope>
55+
</dependency>
5056
</dependencies>
5157
<properties>
52-
<maven.compiler.source>1.6</maven.compiler.source>
53-
<maven.compiler.target>1.6</maven.compiler.target>
58+
<maven.compiler.source>1.7</maven.compiler.source>
59+
<maven.compiler.target>1.7</maven.compiler.target>
5460
<skip_maven_deploy>false</skip_maven_deploy>
5561
<maven_deploy_plugin_version>2.8.2.3</maven_deploy_plugin_version>
5662
</properties>

src/com/caucho/hessian/client/HessianProxy.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -172,15 +172,17 @@ else if (methodName.equals("toString") && params.length == 0)
172172

173173
is = getInputStream(conn);
174174

175+
175176
if (log.isLoggable(Level.FINEST)) {
176177
PrintWriter dbg = new PrintWriter(new LogWriter(log));
177178
HessianDebugInputStream dIs
178179
= new HessianDebugInputStream(is, dbg);
179180

180-
dIs.startTop2();
181+
dIs.startTop2(); //处理协议标记
181182

182183
is = dIs;
183184
}
185+
184186

185187
AbstractHessianInput in;
186188

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
/*
2+
* To change this license header, choose License Headers in Project Properties.
3+
* To change this template file, choose Tools | Templates
4+
* and open the template in the editor.
5+
*/
6+
package com.caucho.hessian.huang;
7+
8+
import java.util.HashMap;
9+
import java.util.Map;
10+
11+
/**
12+
*
13+
* @author huang
14+
*/
15+
public class HessianHeaderContext {
16+
private static final ThreadLocal<HessianHeaderContext> THREAD_LOCAL = new ThreadLocal<>();
17+
18+
private Map<String, String> headers = new HashMap<>();
19+
20+
private HessianHeaderContext() {
21+
}
22+
23+
public static HessianHeaderContext getContext() {
24+
HessianHeaderContext context = THREAD_LOCAL.get();
25+
if (context == null) {
26+
context = new HessianHeaderContext();
27+
THREAD_LOCAL.set(context);
28+
}
29+
return context;
30+
}
31+
32+
public void addHeader(String name, String value) {
33+
headers.put(name, value);
34+
}
35+
36+
public String getHeader(String name) {
37+
return headers.get(name);
38+
}
39+
40+
public Map<String, String> getHeaders() {
41+
return headers;
42+
}
43+
44+
public static void close() {
45+
HessianHeaderContext context = THREAD_LOCAL.get();
46+
if (context != null) {
47+
context.headers.clear();
48+
THREAD_LOCAL.set(null);
49+
}
50+
}
51+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
/*
2+
* To change this license header, choose License Headers in Project Properties.
3+
* To change this template file, choose Tools | Templates
4+
* and open the template in the editor.
5+
*/
6+
package com.caucho.hessian.huang;
7+
8+
import com.caucho.hessian.client.HessianConnection;
9+
import com.caucho.hessian.client.HessianProxyFactory;
10+
import java.net.URL;
11+
import java.util.Map;
12+
13+
/**
14+
*
15+
* @author huang
16+
*/
17+
public class HessianProxy extends com.caucho.hessian.client.HessianProxy {
18+
protected HessianProxy(URL url, HessianProxyFactory factory) {
19+
super(url, factory);
20+
}
21+
22+
protected HessianProxy(URL url, HessianProxyFactory factory, Class<?> type) {
23+
super(url, factory, type);
24+
}
25+
26+
@Override
27+
protected void addRequestHeaders(HessianConnection conn)
28+
{
29+
super.addRequestHeaders(conn);
30+
31+
// add Hessian Header
32+
Map<String, String> headerMap = HessianHeaderContext.getContext().getHeaders();
33+
for (Map.Entry<String, String> entry : headerMap.entrySet()) {
34+
conn.addHeader(entry.getKey(), entry.getValue());
35+
}
36+
}
37+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
/*
2+
* To change this license header, choose License Headers in Project Properties.
3+
* To change this template file, choose Tools | Templates
4+
* and open the template in the editor.
5+
*/
6+
package com.caucho.hessian.huang;
7+
8+
import com.caucho.hessian.io.HessianRemoteObject;
9+
import java.lang.reflect.InvocationHandler;
10+
import java.lang.reflect.Proxy;
11+
import java.net.URL;
12+
13+
/**
14+
*
15+
* @author huang
16+
*/
17+
public class HessianProxyFactory extends com.caucho.hessian.client.HessianProxyFactory {
18+
@Override
19+
public Object create(Class<?> api, URL url, ClassLoader loader)
20+
{
21+
if (api == null) {
22+
throw new NullPointerException("api must not be null for HessianProxyFactory.create()");
23+
}
24+
25+
InvocationHandler handler = new HessianProxy(url, this, api);
26+
27+
return Proxy.newProxyInstance(loader,
28+
new Class[]{api, HessianRemoteObject.class},
29+
handler);
30+
}
31+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
/*
2+
* To change this license header, choose License Headers in Project Properties.
3+
* To change this template file, choose Tools | Templates
4+
* and open the template in the editor.
5+
*/
6+
package com.caucho.hessian.huang;
7+
8+
import java.io.IOException;
9+
import java.util.Enumeration;
10+
import javax.servlet.ServletException;
11+
import javax.servlet.http.HttpServletRequest;
12+
import javax.servlet.http.HttpServletResponse;
13+
import org.springframework.web.HttpRequestMethodNotSupportedException;
14+
import org.springframework.web.util.NestedServletException;
15+
16+
/**
17+
*
18+
* @author huang
19+
*/
20+
public class HessianServiceExporter extends org.springframework.remoting.caucho.HessianServiceExporter {
21+
@Override
22+
public void handleRequest(HttpServletRequest request, HttpServletResponse response)
23+
throws ServletException, IOException {
24+
25+
if (!"POST".equals(request.getMethod())) {
26+
throw new HttpRequestMethodNotSupportedException(request.getMethod(),
27+
new String[] {"POST"}, "HessianServiceExporter only supports POST requests");
28+
}
29+
30+
handleHessianHeader(request);
31+
32+
response.setContentType(CONTENT_TYPE_HESSIAN);
33+
try {
34+
invoke(request.getInputStream(), response.getOutputStream());
35+
} catch (Throwable ex) {
36+
throw new NestedServletException("Hessian skeleton invocation failed", ex);
37+
} finally {
38+
HessianHeaderContext.close();
39+
}
40+
}
41+
42+
protected void handleHessianHeader(HttpServletRequest request) {
43+
HessianHeaderContext context = HessianHeaderContext.getContext();
44+
Enumeration enumeration = request.getHeaderNames();
45+
while (enumeration.hasMoreElements()) {
46+
String name = enumeration.nextElement().toString();
47+
String value = request.getHeader(name);
48+
context.addHeader(name, value);
49+
}
50+
}
51+
}

src/com/caucho/hessian/io/HessianDebugState.java

+9-2
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,15 @@ public void startStreaming()
110110
public void next(int ch)
111111
throws IOException
112112
{
113-
_dbg.print(String.format("{\\x%02x}", ch));
114-
_dbg.print(String.format("{\\d%03d}", ch));
113+
if(ch>=0)
114+
{
115+
_dbg.print(String.format("{\\x%02x}", ch));
116+
_dbg.print(String.format("{\\d%03d}", ch));
117+
}
118+
// else if(ch<-1)
119+
// {
120+
// log.warning(String.format("意外的序列值: ( {%d} )", ch));
121+
// }
115122
_state = _state.next(ch);
116123
}
117124

0 commit comments

Comments
 (0)