⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xfireproxyfactorybean.java

📁 Xfire文件 用于开发web service 的一个开源工具 很好用的
💻 JAVA
字号:
package org.codehaus.xfire.spring.remoting;import java.net.MalformedURLException;import org.springframework.aop.framework.ProxyFactory;import org.springframework.beans.factory.FactoryBean;/** * Factory bean for XFire proxies. Behaves like the proxied service when used as bean reference, exposing the specified * service interface. * <p/> * The service URL must be an HTTP URL exposing a SOAP service. For details, see <code>XFireClientInterceptor</code> * docs. * * @author <a href="mailto:poutsma@mac.com">Arjen Poutsma</a> * @see #setServiceInterface * @see #setServiceUrl *  * @deprecated Please use XFireClientFactoryBean instead. */public class XFireProxyFactoryBean        extends XFireClientInterceptor        implements FactoryBean{    private Object serviceProxy;    public void afterPropertiesSet()            throws MalformedURLException    {        super.afterPropertiesSet();        this.serviceProxy = ProxyFactory.getProxy(getService().getServiceClass(), this);    }    public Object getObject()    {        return this.serviceProxy;    }    public Class getObjectType()    {        return (this.serviceProxy != null) ? this.serviceProxy.getClass() : getService().getServiceClass();    }    public boolean isSingleton()    {        return true;    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -