# easy-iot-spring-boot-starter **Repository Path**: damocode/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**: 24 - **Forks**: 13 - **Created**: 2021-10-07 - **Last Updated**: 2025-02-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: IOT, 物联网, 边缘计算 ## 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