我正在使用Spring 4.0.4
并使用HttpInvoker
Spring 来更新通常在同一个 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 系统有区别吗?