我使用Spring 4.0.4
并使用Spring中的HttpInvoker
来更新通常在同一个Tomcat上运行的其他应用程序的对象。
问题是,属于自定义对象的属性仅包含unique Id
,而且远程站点上没有其他参数(例如名称)。
我必须首先说,问题只出现在Linux上,而不是Windows系统上。这意味着配置不会出错。
配置非常简单,基于Spring文档(http://docs.spring.io/spring/docs/current/spring-framework-reference/html/remoting.html)。
<bean id="applicationRemoteService" class="com.commitpro.apps.usermgmt.ws.application.ApplicationRemoteServiceImpl" />
<bean name="applicationExporter" class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
<property name="service" ref="applicationRemoteService"/>
<property name="serviceInterface" value="com.commitpro.apps.humnet.base.ws.application.ApplicationRemoteServiceI"/>
</bean>
在客户端,它配置如下:
<bean id="applicationRemoteService" class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
<property name="serviceUrl" ref="applicationServiceUrl" />
<property name="serviceInterface" value="com.commitpro.apps.humnet.base.ws.application.ApplicationRemoteServiceI" />
</bean>
ApplicationRemoteServiceImpl
的方法如下:
public void saveDepartmentToApplication(ApplicationE application, Department department) throws Exception {...}
department
实例只有id
(int),但字符串name
很遗憾。与作为部门成员的location
和divisionSet
相同。
Department对象如下所示:
public class Department extends DivisionBaseA<Department> {
private static final long serialVersionUID = -6170085791318124502L;
private int id;
private Location location;
private Set<Division> divisionSet = new TreeSet<Division>();
DivisionBaseA:
public abstract class DivisionBaseA<E> implements Serializable, Comparable<E> {
private static final long serialVersionUID = 4028530780182033960L;
private String name, description;
private boolean active = true;
它与序列化有关吗? Windows和Linux系统之间有区别吗?
答案 0 :(得分:0)
我将Spring更新为4.2.2.RELEASE,现在它正在运行。