com.github.antelopeframework.remoting.client.HessianProxyFactoryBean Maven / Gradle / Ivy
package com.github.antelopeframework.remoting.client;
import org.springframework.beans.factory.InitializingBean;
import lombok.Setter;
public class HessianProxyFactoryBean extends org.springframework.remoting.caucho.HessianProxyFactoryBean implements InitializingBean {
@Setter
private String urlPrefix;
@Override
public void afterPropertiesSet() {
setServiceUrl(urlPrefix + "/" + getServiceInterface().getName());
super.afterPropertiesSet();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy