# hl7-parse
**Repository Path**: fengdongcao/hl7-parse
## Basic Information
- **Project Name**: hl7-parse
- **Description**: 此项目包含HL7协议的服务端接受处理和客户端的数据推送的脚手架代码
- **Primary Language**: Unknown
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 1
- **Forks**: 1
- **Created**: 2023-12-06
- **Last Updated**: 2024-02-21
## Categories & Tags
**Categories**: Uncategorized
**Tags**: HL7, Java
## README
# hl7-parse
------
## 介绍
此项目包含HL7协议服务端的接收处理和客户端的数据推送的脚手架代码
## 文档
如需启动socket服务,你需要在启动类或实现CommandLineRunner的类中,调用HL7ServiceInstance.start();
项目中解析的协议版本为`2.4`,不同版本的协议解析不一致,需要修改引入的依赖包及修改相关代码逻辑
```xml
ca.uhn.hapi
hapi-structures-v24
${hapi.version}
```
比如`2.6`协议的依赖包如下,以此类推。
```xml
ca.uhn.hapi
hapi-structures-v26
${hapi.version}
```
## 文档链接
Hapi`v2.5.1` :[官方文档](https://hapifhir.github.io/hapi-hl7v2/devbyexample.html)