All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.antelopeframework.remoting.client.HessianProxyFactoryBean Maven / Gradle / Ivy

There is a newer version: 1.1.5
Show newest version
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