`

spring httpinvoker https

 
阅读更多

Spring HttpInvoke,一种较为常用的、基于Spring架构的服务器之间的远程调用实现,可以说是轻量级的RMI

 

1.在web.xml配置spring 并添加对应的spring配置文件

 

<listener>
		<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
	</listener>
	<servlet>   
   
        <servlet-name>service</servlet-name>   
   
        <servlet-class>   
   
            org.springframework.web.servlet.DispatcherServlet    
   
        </servlet-class>   
   
        <load-on-startup>1</load-on-startup>   
   
    </servlet>   
   
     
   
    <servlet-mapping>   
   
        <servlet-name>service</servlet-name>   
   
        <url-pattern>/service/*</url-pattern>   
   
    </servlet-mapping> 

   对应的需要添加 service-servlet.xml

 

 

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
	xmlns:aop="http://www.springframework.org/schema/aop" xmlns:p="http://www.springframework.org/schema/p"
	xmlns:tx="http://www.springframework.org/schema/tx" xmlns:jdbc="http://www.springframework.org/schema/jdbc"
	xmlns:mvc="http://www.springframework.org/schema/mvc"

	xsi:schemaLocation="http://www.springframework.org/schema/beans   
           http://www.springframework.org/schema/beans/spring-beans-3.0.xsd   
           http://www.springframework.org/schema/context   
           http://www.springframework.org/schema/context/spring-context-3.0.xsd   
           http://www.springframework.org/schema/tx   
           http://www.springframework.org/schema/tx/spring-tx-3.0.xsd   
           http://www.springframework.org/schema/jdbc   
           http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd
        http://www.springframework.org/schema/mvc 
        http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">

	

</beans>

 

 

2.首先定义接口

public interface UserService {   
  
   
    User getUser(String username);   
} 

 3.定义返回的model

用户类,注意实现Serializable接口,这是执行远程调用传递数据对象的第一要求——数据对象必须实现Serializable接口,因为,要执行序列化/反序列化操作!

public class User implements Serializable {   
  
    private static final long serialVersionUID = 5590768569302443813L;   
    private String username;   
    private Date birthday;   
  

    public User(String username, Date birthday) {   
        this.username = username;   
        this.birthday = birthday;   
    }   

    @Override  
    public String toString() {   
        return String.format("%s\t%s\t", username, birthday);   
    }   
}  

 4. userservice 实现

public class UserServiceImpl implements UserService {   
    private Logger logger = Logger.getLogger(UserServiceImpl.class);   
  
       @Override  
    public User getUser(String username) {   
        if (logger.isDebugEnabled()) {   
            logger.debug("username:[" + username + "]");   
        }   
        User user = new User(username, new Date());   
        if (logger.isDebugEnabled()) {   
            logger.debug("user:[" + user + "]");   
        }   
        return user;   
    }   
  
}  

 5.发不成http服务

 

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
	xmlns:aop="http://www.springframework.org/schema/aop" xmlns:p="http://www.springframework.org/schema/p"
	xmlns:tx="http://www.springframework.org/schema/tx" xmlns:jdbc="http://www.springframework.org/schema/jdbc"
	xmlns:mvc="http://www.springframework.org/schema/mvc"

	xsi:schemaLocation="http://www.springframework.org/schema/beans   
           http://www.springframework.org/schema/beans/spring-beans-3.0.xsd   
           http://www.springframework.org/schema/context   
           http://www.springframework.org/schema/context/spring-context-3.0.xsd   
           http://www.springframework.org/schema/tx   
           http://www.springframework.org/schema/tx/spring-tx-3.0.xsd   
           http://www.springframework.org/schema/jdbc   
           http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd
        http://www.springframework.org/schema/mvc 
        http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">

	<bean id="httpService"
		class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">
		<property name="service" ref="userService" />
		<property name="serviceInterface" value="com.mpupa.service.IUserService" />
	</bean>

	<bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
		<property name="mappings">
			<props>
				<prop key="/httpService">httpService</prop>
			</props>
		</property>
	</bean>

</beans>

 

6.客户端调用

  首先要把 IUserService接口以及需要返回的Model放到客户端,打jar包或者直接把类拷贝过去

  然后配置 bean

 

<bean id="httpService" class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
		<property name="serviceUrl">
			<value> https://apps.dotter.me/consumer/service/userHttpService
			</value>
		</property>
		<property name="serviceInterface" value="com.mpupa.service.IUserService">
		</property>
</bean>

 

   在java类里调用

  

@Resource(name="httpService")
	IUserService userService;
User user = userService.getUser("test");

 

 7.优化

    如果我们这样写,其实默认调用了SimpleHttpInvokerRequestExecutor做实现,这个实现恐怕只能作为演示来用!
这也是效率问题所在!!!
为提高效率,应该通过Commons-HttpClient!
我们需要做什么?导入这个jar,改改xml就行!

<bean id="httpService"
		class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
		<property name="serviceUrl">
			<value> https://apps.dotter.me/consumer/service/userHttpService
			</value>
		</property>
		<property name="serviceInterface" value="com.mpupa.service.IUserService">
		</property>
		<property name="httpInvokerRequestExecutor">
	        <bean class="org.springframework.remoting.httpinvoker.CommonsHttpInvokerRequestExecutor">
	            <property name="readTimeout" value="5000" />
	            <property name="connectTimeout" value="5000" />
	        </bean>
   		 </property>
	</bean>

 

或者

  

<bean id="httpService"
		class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
		<property name="serviceUrl">
			<value> https://apps.dotter.me/consumer/service/userHttpService
			</value>
		</property>
		<property name="serviceInterface" value="com.mpupa.service.IUserService">
		</property>
		<property  
        name="httpInvokerRequestExecutor">  
        <ref  
            bean="httpInvokerRequestExecutor" />  
    </property>  

	</bean>

<bean  
    id="httpInvokerRequestExecutor" class="org.springframework.remoting.httpinvoker.CommonsHttpInvokerRequestExecutor">  
    <property  
        name="httpClient">  
        <bean  
            class="org.apache.commons.httpclient.HttpClient">  
            <property  
                name="connectionTimeout"  
                value="2000" />  
            <property  
                name="timeout"  
                value="5000" />  
        </bean>  
    </property>  
</bean>  

这时,转为org.springframework.remoting.httpinvoker.CommonsHttpInvokerRequestExecutor实现了!,通过HttpClient,我们可以配置超时时间timeout和连接超时connectionTimeout两个属性,这样,服务器执行操作时,如果超时就可以强行释放连接,这样可怜的tomcat不会因为HttpInvoke连接不释放而被累死!

还可以控制线程数

<bean  
        id="httpInvokerRequestExecutor"  
        class="org.springframework.remoting.httpinvoker.CommonsHttpInvokerRequestExecutor">  
        <property  
            name="httpClient">  
            <bean  
                class="org.apache.commons.httpclient.HttpClient">  
                <property  
                    name="connectionTimeout"  
                    value="2000" />  
                <property  
                    name="timeout"  
                    value="5000" />  
                <property  
                    name="httpConnectionManager">  
                    <ref  
                        bean="multiThreadedHttpConnectionManager" />  
                </property>  
            </bean>  
        </property>  
    </bean>  
    <bean  
        id="multiThreadedHttpConnectionManager"  
        class="org.apache.commons.httpclient.MultiThreadedHttpConnectionManager">  
        <property  
            name="params">  
            <bean  
                class="org.apache.commons.httpclient.params.HttpConnectionManagerParams">  
                <property  
                    name="maxTotalConnections"  
                    value="600" />  
                <property  
                    name="defaultMaxConnectionsPerHost"  
                    value="512" />  
            </bean>  
        </property>  
    </bean>  

 改用MultiThreadedHttpConnectionManager,多线程!!!
测试就不说了,实践证明:
默认实现,服务器平均10s左右才能响应一个请求。
多线程实现,服务器平均20ms左右响应一个请求。
这简直不是一个数量级!!!

 

 

分享到:
评论
1 楼 s1289263571 2014-10-25  

相关推荐

    springboot-httpinvoker-demo.zip

    同时,使用`@HttpInvokerService`注解暴露该服务,指定远程访问的URL。 3. 配置服务消费方:在服务消费方,使用`@HttpInvokerProxyFactoryBean`来创建服务代理,指定服务的URL和接口类型。这样,消费方就可以像调用...

    Spring的HttpInvoker使用示例 (可下载源码)

    NULL 博文链接:https://lggege.iteye.com/blog/369151

    Java Spring1.2 Remote Invoke HTTP Invoker

    5. **安全性**:由于HTTP Invoker基于HTTP协议,所以它可以利用HTTP的安全特性,如HTTPS、Basic Auth或OAuth等,来提供安全的远程调用。这需要在服务器和客户端的配置中进行适当设置。 6. **性能优化**:虽然HTTP ...

    改造Spring的HttpInvoker, 去掉对Bean的XML配置文件的依赖

    NULL 博文链接:https://lggege.iteye.com/blog/404124

    Eclipse工程Http Invoker Service & Client

    &lt;bean id="myServiceExporter" class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter"&gt; ``` 服务端还需要一个Servlet容器,如Tomcat,部署Spring应用上下文,并配置一个...

    spring远程调用

    在分布式系统中,远程调用是一个常见需求,Spring为此提供了一种轻量级的解决方案——HttpInvoker。本文将详细讲解如何利用Spring的HttpInvoker进行远程方法调用。 首先,我们需要理解什么是Spring HttpInvoker。...

    Spring Flex 整合

    常用的方式有HTTPInvoker和HTTPService。 **三、开发流程** 1. **设置项目结构**: 创建Spring MVC项目,并添加BlazeDS和Spring Flex相关依赖。 2. **配置Spring**:配置Spring的ApplicationContext,声明服务bean...

    flex_servlet_spring整合

    3. **通信机制**:在Flex和Spring之间,通常使用HTTP服务(例如Spring的HttpInvoker或WebServices)或者 BlazeDS / LCDS(LiveCycle Data Services)这样的AMF代理。AMF是一种二进制协议,传输效率高,适合大量数据...

    Spring Security3技术手册

    ### Spring Security3技术手册知识点概览 #### 一、基础篇 **1. 一个简单的Hello World** - **1.1 配置过滤器** - Spring Security通过一系列的过滤器来实现对Web应用程序的安全控制。了解如何配置这些过滤器是...

    xfire+spring

    Spring的HttpInvoker或WebServiceTemplate组件可以用来方便地实现这种通信。 4. **Maven或Gradle构建**:由于文件大小问题,可能这个项目使用了Maven或Gradle作为构建工具,它们能管理项目依赖并构建可执行的JAR或...

    Spring Security

    使用HttpInvoker进行远程调用时的安全控制。 **27. 使用RMI** 使用RMI进行远程调用时的安全控制。 **28. 控制Portal的权限** 针对Portlet应用程序的安全控制。 **29. 保存登录之前的请求** 记录用户登录前的...

    httpclient4.5 jar包

    HttpClient 4.5与Spring框架有良好的集成,可以通过Spring的`HttpInvoker`或`RestTemplate`来方便地调用HttpClient,简化代码。 7. **最佳实践** - 适当设置连接池大小,避免资源浪费。 - 使用HTTP/2和SPDY提升...

    cxf 客户端实现

    CXF支持多种协议,如HTTP、HTTPS、JMS等,并且可以与Java EE、Spring框架无缝集成。在CXF中,客户端和服务端都可以通过WSDL(Web Services Description Language)来描述接口和消息交换格式。 **二、CXF客户端创建...

Global site tag (gtag.js) - Google Analytics