# easy-iot-spring-boot-starter **Repository Path**: dych/easy-iot-spring-boot-starter ## Basic Information - **Project Name**: easy-iot-spring-boot-starter - **Description**: 基于easy-iot物联网SDK实现的spring boot快速集成组件,用于在spring boot项目中快速集成easy-iot - **Primary Language**: Java - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 13 - **Created**: 2023-04-26 - **Last Updated**: 2023-04-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### 使用方法: - 导入依赖 ``` org.damocode easy-iot-spring-boot-starter 1.0-SNAPSHOT ``` - 注入相关类 ```java // TCP网络组件提供者 @Resource private TcpServerProvider tcpServerProvider; //设备会话管理器 @Resource private DefaultDeviceSessionManager deviceSessionManager; //设备操作管理器 @Resource private DeviceOperatorManager deviceOperatorManager; ``` - 实现数据解码及编码接口 DeviceMessageCodec - 实现数据操作保存接口 DecodedClientMessageHandler