资讯专栏INFORMATION COLUMN

Spring Boot整合hessian入门

wujl596 / 1857人阅读

摘要:相比,更简单快捷。采用的是二进制协议,因为采用的是二进制协议,所以它很适合于发送二进制数据。创建接口创建实现类类端在这个包下服务端包类将服务端的代码打包安装到本地仓库,打开浏览器输入即可。

前言

看了其他的文章发现,大多数都是只写了关键的部分,对于一个初学者来说只能明白用了什么东西,但实际动手发现,项目还存在一些问题,通过本篇文章,可以避免一些问题,节省一些时间成本。

Hessian简介

Hessian是一个轻量级的remoting onhttp工具,使用简单的方法提供了RMI的功能。 相比WebService,Hessian更简单、快捷。采用的是二进制RPC协议,因为采用的是二进制协议,所以它很适合于发送二进制数据。
但是它的参数和返回值都需要实现Serializable接口。

代码实现

由于Hessian是一个远程调用的工具,那么我们需要创建2个springboot项目来模拟,服务端项目:springboot-hessian-server,客户端项目:springboot-hessian-client.

springboot-hessian-server端

application.properties

server.port=8081

server端pom.xml


        
            com.caucho
            hessian
            4.0.38
        

        
        
        
            org.springframework.boot
            spring-boot-starter-web
        
    

    
        
            
                
                org.springframework.boot
                spring-boot-maven-plugin
                
                
                    true
                
            
        
    

需要注意上面那个插件,默认的时候创建,但是没有下面中的内容,打包之后,反编译会发现根路径是BOOT-INF,这会引起客户端找不到接口中的方法的问题。

创建service接口

public interface HelloWorldService {
    String sayHello(String name);
}

创建service实现类

@Service
public class HelloWorldServiceImpl implements HelloWorldService {
    @Override
    public String sayHello(String name) {
        return "Hello world! "+ name;
    }
}

Application类

@SpringBootApplication
public class TestSpringbootHessianApplication {

    public static void main(String[] args) {
        SpringApplication.run(TestSpringbootHessianApplication.class, args);
    }

    @Autowired
    private HelloWorldService helloWorldService;

    @Bean(name = "/hello/world/service")
    public HessianServiceExporter accountService(){
        HessianServiceExporter exporter = new HessianServiceExporter();
        exporter.setService(helloWorldService);
        exporter.setServiceInterface(HelloWorldService.class);
        return exporter;
    }
client端

application.properties

    server.port=8082

pom.xml

    
        
            com.caucho
            hessian
            4.0.38
        

        
        
            org.springframework.boot
            spring-boot-starter-web
        
        
       
        
            com.test.springboot.hessian
            test-hessian
            0.0.1-SNAPSHOT
        

Application类

@SpringBootApplication
public class TestSpringbootHessianClientApplication {

    public static void main(String[] args) {
        SpringApplication.run(TestSpringbootHessianClientApplication.class, args);
    }

    @Bean
    public HessianProxyFactoryBean helloClient(){
        HessianProxyFactoryBean factoryBean = new HessianProxyFactoryBean();
        factoryBean.setServiceUrl("http://localhost:8081/hello/world/service");
        factoryBean.setServiceInterface(HelloWorldService.class);
        return factoryBean;
    }

}

controller

@RestController
public class HelloWorldController {

    @Autowired
    HelloWorldService helloWorldService;

    @RequestMapping("/test")
    public String test(){
        return helloWorldService.sayHello("zzz");
    }
}

将服务端的代码打包安装到本地仓库,打开浏览器输入 http://localhost:8082/test 即可。

附上本人的git地址:

server端
https://gitee.com/BAKERSTREET...
client端
https://gitee.com/BAKERSTREET...

文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。

转载请注明本文地址:https://www.ucloud.cn/yun/72790.html

相关文章

  • dubbo个人理解于应用章(二)

    摘要:当提供程序线程池耗尽时,不能发送到使用者端。一些错误修正动态配置不能删除,支持参数,监控统计问题等新功能支持手册线程池耗尽时自动堆栈转储。在注册表无法连接时被阻止。正常关机,在注册表取消注册和线程池关闭之间增加额外的等待时间。 dubbo分析showImg(https://segmentfault.com/img/bVbam2f?w=1726&h=686); dubbo为什么要对接sp...

    AlphaWallet 评论0 收藏0
  • spring boot classloader

    摘要:最近闲暇时写了一个小测试的工具,为了方便使用了。该测试工具最关键的步骤是动态加载每个测试模块对应的的包。这是我考虑到是不是的比较特殊,不是。具体参见此大神的实验。遂修改代码请输入代码 最近闲暇时写了一个hessian 小测试的工具,为了方便使用了spring boot。该测试工具最关键的步骤是动态加载每个测试模块对应的hessian api的jar包。开始的加载代码为: URLClas...

    smartlion 评论0 收藏0
  • 写这么多系列博客,怪不得找不到女朋友

    摘要:前提好几周没更新博客了,对不断支持我博客的童鞋们说声抱歉了。熟悉我的人都知道我写博客的时间比较早,而且坚持的时间也比较久,一直到现在也是一直保持着更新状态。 showImg(https://segmentfault.com/img/remote/1460000014076586?w=1920&h=1080); 前提 好几周没更新博客了,对不断支持我博客的童鞋们说声:抱歉了!。自己这段时...

    JerryWangSAP 评论0 收藏0
  • dubbo整合springboot最详细入门教程

    摘要:说明目前互联网公司,大部分项目都是基于分布式,一个项目被拆分成几个小项目,这些小项目会分别部署在不同的计算机上面,这个叫做微服务。当一台计算机的程序需要调用另一台计算机代码的时候,就涉及远程调用。此时就粉末登场了。 showImg(https://s2.ax1x.com/2019/07/05/ZaELxe.jpg); 说明 目前互联网公司,大部分项目都是基于分布式,一个项目被拆分成几个...

    JinB 评论0 收藏0

发表评论

0条评论

wujl596

|高级讲师

TA的文章

阅读更多
最新活动
阅读需要支付1元查看
<