首先添加hessian依賴
1
2
3
4
5
|
<dependency> <groupId>com.caucho</groupId> <artifactId>hessian</artifactId> <version> 4.0 . 38 </version> </dependency> |
服務端:HessianServer,端口號:8090
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
public interface HelloWorldService { String sayHello(String name); } @Service ( "HelloWorldService" ) public class HelloWorldServiceImpl implements HelloWorldService { @Override public String sayHello(String name) { return "Hello World! " + name; } } @SpringBootApplication public class HessianServerApplication { @Autowired private HelloWorldService helloWorldService; public static void main(String[] args) { SpringApplication.run(HessianServerApplication. class , args); } //發布服務 @Bean (name = "/HelloWorldService" ) public HessianServiceExporter accountService() { HessianServiceExporter exporter = new HessianServiceExporter(); exporter.setService(helloWorldService); exporter.setServiceInterface(HelloWorldService. class ); return exporter; } } |
客戶端代碼:HessianClient,同服務端一樣引入hessian依賴,端口號:8092
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
public interface HelloWorldService { String sayHello(String name); } @SpringBootApplication public class HessianClientApplication { @Bean public HessianProxyFactoryBean helloClient() { HessianProxyFactoryBean factory = new HessianProxyFactoryBean(); factory.setServiceUrl( "http://localhost:8090/HelloWorldService" ); factory.setServiceInterface(HelloWorldService. class ); return factory; } public static void main(String[] args) { SpringApplication.run(HessianClientApplication. class , args); } } @RestController public class TestController { @Autowired private HelloWorldService helloWorldService; @RequestMapping ( "/test" ) public String test() { return helloWorldService.sayHello( "Spring boot with Hessian." ); } } |
訪問地址即可:http://localhost:8092/test
PS:springboot hessian
注意把hessian的依賴換成4.0.38或者把git文件里的4.0.37放到maven私服中去,推薦使用4.0.37版本。38版本存在序列化bigdecimal的問題。
1
2
3
4
5
|
<dependency> <groupId>com.caucho</groupId> <artifactId>hessian</artifactId> <version> 4.0 . 37 </version> </dependency> |
git:
https://git.oschina.net/wong_loong/rpc.git
以上所述是小編給大家介紹的spring boot整合hessian的示例,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對服務器之家網站的支持!
原文鏈接:http://blog.csdn.net/sias1991/article/details/75270547