【发布时间】:2011-11-27 20:46:55
【问题描述】:
服务器,一个运行 Spring 2.5.6 的独立 SE 应用程序和一个嵌入式码头。 客户端,Swing 应用程序,使用 HttpInvoker 连接到服务器。
服务器公开了很多服务,现在出现了新的要求,即我需要记录(几乎)客户端的每次调用。
我想做的是让客户端发送一些额外的信息,(用户名、工作站 ID 等。字符串和整数)。 服务器上的典型方法如下所示
public void doStuff(int someParam) {
// Do stuff
List result = method(someParam)
// Audit
// get the client information from somewhere?!!
String username;
int workstationId;
auditDao.doStuffPerformed(username, workstationId, someParam, result);
}
那么,我如何从服务器上的方法中获取客户端信息。
我尝试过的一个解决方案是将客户端信息添加为请求属性并调用方法 RequestContextHolder.getRequestAttributes();从方法内部。
我在客户端添加了一个 CommonsHttpInvokerRequestExecutor 并重载了以下方法以添加附加信息。
@Override
protected PostMethod createPostMethod(HttpInvokerClientConfiguration config) throws IOException {
PostMethod postMethod = super.createPostMethod(config);
postMethod.addRequestHeader("someHeader", "someHeader2");
postMethod.addParameter("someParam", "someParam2");
postMethod.setRequestHeader("someRequestHeader", "someRequestHeader2");
return postMethod;
}
但是,这将不起作用。服务器上无法访问标头或参数。
任何回复将不胜感激。
【问题讨论】:
标签: java spring audit httpinvoker