Serial Spring Boot Starter
RXTX串口通讯的Spring Boot Starter
在maven中安装SerialConnect项目
在maven中安装serial-spring-boot-starter 和 serial-spring-boot-starter-autoconfigurer
-
添加依赖
<dependency> <groupId>cn.allandeng.starter</groupId> <artifactId>serial-spring-boot-starter</artifactId> <version>1.0-SNAPSHOT</version> </dependency>
-
修改配置文件
allan.serial.portName = COM6 allan.serial.baudrate = 9600
-
注入SerialPortFactory和默认Port
@Autowired SerialPortFactory serialPortFactory; @Autowired Port defaultPort;
-
serial-spring-boot-starter ----serial的start
-
serial-spring-boot-starter-autoconfigurer ----serial的autoconfigurer
-
serial-spring-boot-starter-test ----测试start功能的SpringBoot项目