k 2 years ago
commit
c4538c1bb1
94 changed files with 2045 additions and 0 deletions
  1. 8 0
      .idea/.gitignore
  2. 19 0
      .idea/compiler.xml
  3. 7 0
      .idea/encodings.xml
  4. 30 0
      .idea/jarRepositories.xml
  5. 14 0
      .idea/misc.xml
  6. 10 0
      .idea/runConfigurations.xml
  7. 124 0
      .idea/uiDesigner.xml
  8. 4 0
      README.md
  9. 146 0
      pom.xml
  10. 32 0
      src/main/java/com/jwk/spring/boot/autoconfigure/ModbusAutoConfiguration.java
  11. 80 0
      src/main/java/com/jwk/spring/boot/autoconfigure/ModbusProperties.java
  12. 44 0
      src/main/java/com/jwk/spring/boot/autoconfigure/ModbusRtuMasterTemplate.java
  13. 33 0
      src/main/java/com/jwk/spring/boot/autoconfigure/ModbusTcpMasterTemplate.java
  14. 43 0
      src/main/java/com/jwk/spring/boot/constant/Constant.java
  15. 67 0
      src/main/java/com/jwk/spring/boot/constant/DATA_TYPE_WRAPPER.java
  16. 158 0
      src/main/java/com/jwk/spring/boot/modbus4j/ModbusMasterUtil.java
  17. 98 0
      src/main/java/com/jwk/spring/boot/modbus4j/ModbusRtuMaster.java
  18. 99 0
      src/main/java/com/jwk/spring/boot/modbus4j/ModbusTcpMaster.java
  19. 22 0
      src/main/java/com/jwk/spring/boot/modbus4j/util/rtu/MyProcessImageListener.java
  20. 61 0
      src/main/java/com/jwk/spring/boot/modbus4j/util/rtu/SerialPortUtils.java
  21. 178 0
      src/main/java/com/jwk/spring/boot/modbus4j/util/rtu/SerialPortWrapperImpl.java
  22. 191 0
      src/main/java/com/jwk/spring/boot/test/ModbusTcpMasterUtil.java
  23. 44 0
      src/main/java/com/jwk/spring/boot/test/RtuMasterTest.java
  24. 106 0
      src/main/java/com/jwk/spring/boot/test/RtuSlaveTest.java
  25. 17 0
      src/main/java/com/jwk/spring/boot/test/Test.java
  26. 2 0
      src/main/resources/META-INF/additional-spring-configuration-metadata.json
  27. 3 0
      src/main/resources/META-INF/spring.factories
  28. BIN
      src/main/resources/lib/RXTXcomm.jar
  29. BIN
      src/main/resources/lib/jssc-2.8.0.jar
  30. BIN
      src/main/resources/lib/modbus4j-3.0.5.jar
  31. BIN
      src/main/resources/lib/rxtxParallel.dll
  32. BIN
      src/main/resources/lib/rxtxSerial.dll
  33. 20 0
      src/test/java/com/jwk/AppTest.java
  34. 2 0
      target/classes/META-INF/additional-spring-configuration-metadata.json
  35. 98 0
      target/classes/META-INF/spring-configuration-metadata.json
  36. 3 0
      target/classes/META-INF/spring.factories
  37. BIN
      target/classes/com/jwk/spring/boot/autoconfigure/ModbusAutoConfiguration.class
  38. BIN
      target/classes/com/jwk/spring/boot/autoconfigure/ModbusProperties$RtuMaster.class
  39. BIN
      target/classes/com/jwk/spring/boot/autoconfigure/ModbusProperties$TcpMaster.class
  40. BIN
      target/classes/com/jwk/spring/boot/autoconfigure/ModbusProperties.class
  41. BIN
      target/classes/com/jwk/spring/boot/autoconfigure/ModbusRtuMasterTemplate.class
  42. BIN
      target/classes/com/jwk/spring/boot/autoconfigure/ModbusTcpMasterTemplate.class
  43. BIN
      target/classes/com/jwk/spring/boot/constant/Constant$FUNCTION_CODE.class
  44. BIN
      target/classes/com/jwk/spring/boot/constant/Constant.class
  45. BIN
      target/classes/com/jwk/spring/boot/constant/DATA_TYPE_WRAPPER.class
  46. BIN
      target/classes/com/jwk/spring/boot/modbus4j/ModbusMasterUtil.class
  47. BIN
      target/classes/com/jwk/spring/boot/modbus4j/ModbusRtuMaster.class
  48. BIN
      target/classes/com/jwk/spring/boot/modbus4j/ModbusTcpMaster.class
  49. BIN
      target/classes/com/jwk/spring/boot/modbus4j/util/rtu/MyProcessImageListener.class
  50. BIN
      target/classes/com/jwk/spring/boot/modbus4j/util/rtu/SerialPortUtils.class
  51. BIN
      target/classes/com/jwk/spring/boot/modbus4j/util/rtu/SerialPortWrapperImpl.class
  52. BIN
      target/classes/com/jwk/spring/boot/test/ModbusTcpMasterUtil.class
  53. BIN
      target/classes/com/jwk/spring/boot/test/RtuMasterTest.class
  54. BIN
      target/classes/com/jwk/spring/boot/test/RtuSlaveTest$1.class
  55. BIN
      target/classes/com/jwk/spring/boot/test/RtuSlaveTest.class
  56. BIN
      target/classes/com/jwk/spring/boot/test/Test.class
  57. 5 0
      target/maven-archiver/pom.properties
  58. 0 0
      target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
  59. 16 0
      target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
  60. 0 0
      target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst
  61. 1 0
      target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst
  62. BIN
      target/modbus-spring-boot-starter.jar
  63. 6 0
      target/modbus-spring-boot-starter/META-INF/MANIFEST.MF
  64. 2 0
      target/modbus-spring-boot-starter/META-INF/additional-spring-configuration-metadata.json
  65. 5 0
      target/modbus-spring-boot-starter/META-INF/maven/com.jwk/modbus-spring-boot-starter/pom.properties
  66. 146 0
      target/modbus-spring-boot-starter/META-INF/maven/com.jwk/modbus-spring-boot-starter/pom.xml
  67. 98 0
      target/modbus-spring-boot-starter/META-INF/spring-configuration-metadata.json
  68. 3 0
      target/modbus-spring-boot-starter/META-INF/spring.factories
  69. BIN
      target/modbus-spring-boot-starter/com/jwk/spring/boot/autoconfigure/ModbusAutoConfiguration.class
  70. BIN
      target/modbus-spring-boot-starter/com/jwk/spring/boot/autoconfigure/ModbusProperties$RtuMaster.class
  71. BIN
      target/modbus-spring-boot-starter/com/jwk/spring/boot/autoconfigure/ModbusProperties$TcpMaster.class
  72. BIN
      target/modbus-spring-boot-starter/com/jwk/spring/boot/autoconfigure/ModbusProperties.class
  73. BIN
      target/modbus-spring-boot-starter/com/jwk/spring/boot/autoconfigure/ModbusRtuMasterTemplate.class
  74. BIN
      target/modbus-spring-boot-starter/com/jwk/spring/boot/autoconfigure/ModbusTcpMasterTemplate.class
  75. BIN
      target/modbus-spring-boot-starter/com/jwk/spring/boot/constant/Constant$FUNCTION_CODE.class
  76. BIN
      target/modbus-spring-boot-starter/com/jwk/spring/boot/constant/Constant.class
  77. BIN
      target/modbus-spring-boot-starter/com/jwk/spring/boot/constant/DATA_TYPE_WRAPPER.class
  78. BIN
      target/modbus-spring-boot-starter/com/jwk/spring/boot/modbus4j/ModbusMasterUtil.class
  79. BIN
      target/modbus-spring-boot-starter/com/jwk/spring/boot/modbus4j/ModbusRtuMaster.class
  80. BIN
      target/modbus-spring-boot-starter/com/jwk/spring/boot/modbus4j/ModbusTcpMaster.class
  81. BIN
      target/modbus-spring-boot-starter/com/jwk/spring/boot/modbus4j/util/rtu/MyProcessImageListener.class
  82. BIN
      target/modbus-spring-boot-starter/com/jwk/spring/boot/modbus4j/util/rtu/SerialPortUtils.class
  83. BIN
      target/modbus-spring-boot-starter/com/jwk/spring/boot/modbus4j/util/rtu/SerialPortWrapperImpl.class
  84. BIN
      target/modbus-spring-boot-starter/com/jwk/spring/boot/test/ModbusTcpMasterUtil.class
  85. BIN
      target/modbus-spring-boot-starter/com/jwk/spring/boot/test/RtuMasterTest.class
  86. BIN
      target/modbus-spring-boot-starter/com/jwk/spring/boot/test/RtuSlaveTest$1.class
  87. BIN
      target/modbus-spring-boot-starter/com/jwk/spring/boot/test/RtuSlaveTest.class
  88. BIN
      target/modbus-spring-boot-starter/com/jwk/spring/boot/test/Test.class
  89. BIN
      target/modbus-spring-boot-starter/lib/RXTXcomm.jar
  90. BIN
      target/modbus-spring-boot-starter/lib/jssc-2.8.0.jar
  91. BIN
      target/modbus-spring-boot-starter/lib/modbus4j-3.0.5.jar
  92. BIN
      target/modbus-spring-boot-starter/lib/rxtxParallel.dll
  93. BIN
      target/modbus-spring-boot-starter/lib/rxtxSerial.dll
  94. BIN
      target/test-classes/com/jwk/AppTest.class

+ 8 - 0
.idea/.gitignore

@@ -0,0 +1,8 @@
+# Default ignored files
+/shelf/
+/workspace.xml
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml
+# Editor-based HTTP Client requests
+/httpRequests/

+ 19 - 0
.idea/compiler.xml

@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="CompilerConfiguration">
+    <annotationProcessing>
+      <profile default="true" name="Default" enabled="true" />
+      <profile name="Maven default annotation processors profile" enabled="true">
+        <sourceOutputDir name="target/generated-sources/annotations" />
+        <sourceTestOutputDir name="target/generated-test-sources/test-annotations" />
+        <outputRelativeToContentRoot value="true" />
+        <module name="demo-spring-boot-starter" />
+      </profile>
+    </annotationProcessing>
+  </component>
+  <component name="JavacSettings">
+    <option name="ADDITIONAL_OPTIONS_OVERRIDE">
+      <module name="demo-spring-boot-starter" options="" />
+    </option>
+  </component>
+</project>

+ 7 - 0
.idea/encodings.xml

@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="Encoding">
+    <file url="file://$PROJECT_DIR$/src/main/java" charset="UTF-8" />
+    <file url="file://$PROJECT_DIR$/src/main/resources" charset="UTF-8" />
+  </component>
+</project>

+ 30 - 0
.idea/jarRepositories.xml

@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="RemoteRepositoriesConfiguration">
+    <remote-repository>
+      <option name="id" value="central" />
+      <option name="name" value="Central Repository" />
+      <option name="url" value="http://maven.aliyun.com/nexus/content/groups/public/" />
+    </remote-repository>
+    <remote-repository>
+      <option name="id" value="localrepository" />
+      <option name="name" value="localrepository" />
+      <option name="url" value="http://maven.aliyun.com/nexus/content/groups/public/" />
+    </remote-repository>
+    <remote-repository>
+      <option name="id" value="public" />
+      <option name="name" value="aliyun nexus" />
+      <option name="url" value="http://maven.aliyun.com/nexus/content/groups/public/" />
+    </remote-repository>
+    <remote-repository>
+      <option name="id" value="central" />
+      <option name="name" value="Maven Central repository" />
+      <option name="url" value="https://repo1.maven.org/maven2" />
+    </remote-repository>
+    <remote-repository>
+      <option name="id" value="jboss.community" />
+      <option name="name" value="JBoss Community repository" />
+      <option name="url" value="https://repository.jboss.org/nexus/content/repositories/public/" />
+    </remote-repository>
+  </component>
+</project>

+ 14 - 0
.idea/misc.xml

@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="ExternalStorageConfigurationManager" enabled="true" />
+  <component name="MavenProjectsManager">
+    <option name="originalFiles">
+      <list>
+        <option value="$PROJECT_DIR$/pom.xml" />
+      </list>
+    </option>
+  </component>
+  <component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" default="true" project-jdk-name="1.8" project-jdk-type="JavaSDK">
+    <output url="file://$PROJECT_DIR$/out" />
+  </component>
+</project>

+ 10 - 0
.idea/runConfigurations.xml

@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="RunConfigurationProducerService">
+    <option name="ignoredProducers">
+      <set>
+        <option value="com.android.tools.idea.compose.preview.runconfiguration.ComposePreviewRunConfigurationProducer" />
+      </set>
+    </option>
+  </component>
+</project>

+ 124 - 0
.idea/uiDesigner.xml

@@ -0,0 +1,124 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="Palette2">
+    <group name="Swing">
+      <item class="com.intellij.uiDesigner.HSpacer" tooltip-text="Horizontal Spacer" icon="/com/intellij/uiDesigner/icons/hspacer.png" removable="false" auto-create-binding="false" can-attach-label="false">
+        <default-constraints vsize-policy="1" hsize-policy="6" anchor="0" fill="1" />
+      </item>
+      <item class="com.intellij.uiDesigner.VSpacer" tooltip-text="Vertical Spacer" icon="/com/intellij/uiDesigner/icons/vspacer.png" removable="false" auto-create-binding="false" can-attach-label="false">
+        <default-constraints vsize-policy="6" hsize-policy="1" anchor="0" fill="2" />
+      </item>
+      <item class="javax.swing.JPanel" icon="/com/intellij/uiDesigner/icons/panel.png" removable="false" auto-create-binding="false" can-attach-label="false">
+        <default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3" />
+      </item>
+      <item class="javax.swing.JScrollPane" icon="/com/intellij/uiDesigner/icons/scrollPane.png" removable="false" auto-create-binding="false" can-attach-label="true">
+        <default-constraints vsize-policy="7" hsize-policy="7" anchor="0" fill="3" />
+      </item>
+      <item class="javax.swing.JButton" icon="/com/intellij/uiDesigner/icons/button.png" removable="false" auto-create-binding="true" can-attach-label="false">
+        <default-constraints vsize-policy="0" hsize-policy="3" anchor="0" fill="1" />
+        <initial-values>
+          <property name="text" value="Button" />
+        </initial-values>
+      </item>
+      <item class="javax.swing.JRadioButton" icon="/com/intellij/uiDesigner/icons/radioButton.png" removable="false" auto-create-binding="true" can-attach-label="false">
+        <default-constraints vsize-policy="0" hsize-policy="3" anchor="8" fill="0" />
+        <initial-values>
+          <property name="text" value="RadioButton" />
+        </initial-values>
+      </item>
+      <item class="javax.swing.JCheckBox" icon="/com/intellij/uiDesigner/icons/checkBox.png" removable="false" auto-create-binding="true" can-attach-label="false">
+        <default-constraints vsize-policy="0" hsize-policy="3" anchor="8" fill="0" />
+        <initial-values>
+          <property name="text" value="CheckBox" />
+        </initial-values>
+      </item>
+      <item class="javax.swing.JLabel" icon="/com/intellij/uiDesigner/icons/label.png" removable="false" auto-create-binding="false" can-attach-label="false">
+        <default-constraints vsize-policy="0" hsize-policy="0" anchor="8" fill="0" />
+        <initial-values>
+          <property name="text" value="Label" />
+        </initial-values>
+      </item>
+      <item class="javax.swing.JTextField" icon="/com/intellij/uiDesigner/icons/textField.png" removable="false" auto-create-binding="true" can-attach-label="true">
+        <default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
+          <preferred-size width="150" height="-1" />
+        </default-constraints>
+      </item>
+      <item class="javax.swing.JPasswordField" icon="/com/intellij/uiDesigner/icons/passwordField.png" removable="false" auto-create-binding="true" can-attach-label="true">
+        <default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
+          <preferred-size width="150" height="-1" />
+        </default-constraints>
+      </item>
+      <item class="javax.swing.JFormattedTextField" icon="/com/intellij/uiDesigner/icons/formattedTextField.png" removable="false" auto-create-binding="true" can-attach-label="true">
+        <default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
+          <preferred-size width="150" height="-1" />
+        </default-constraints>
+      </item>
+      <item class="javax.swing.JTextArea" icon="/com/intellij/uiDesigner/icons/textArea.png" removable="false" auto-create-binding="true" can-attach-label="true">
+        <default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
+          <preferred-size width="150" height="50" />
+        </default-constraints>
+      </item>
+      <item class="javax.swing.JTextPane" icon="/com/intellij/uiDesigner/icons/textPane.png" removable="false" auto-create-binding="true" can-attach-label="true">
+        <default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
+          <preferred-size width="150" height="50" />
+        </default-constraints>
+      </item>
+      <item class="javax.swing.JEditorPane" icon="/com/intellij/uiDesigner/icons/editorPane.png" removable="false" auto-create-binding="true" can-attach-label="true">
+        <default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
+          <preferred-size width="150" height="50" />
+        </default-constraints>
+      </item>
+      <item class="javax.swing.JComboBox" icon="/com/intellij/uiDesigner/icons/comboBox.png" removable="false" auto-create-binding="true" can-attach-label="true">
+        <default-constraints vsize-policy="0" hsize-policy="2" anchor="8" fill="1" />
+      </item>
+      <item class="javax.swing.JTable" icon="/com/intellij/uiDesigner/icons/table.png" removable="false" auto-create-binding="true" can-attach-label="false">
+        <default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
+          <preferred-size width="150" height="50" />
+        </default-constraints>
+      </item>
+      <item class="javax.swing.JList" icon="/com/intellij/uiDesigner/icons/list.png" removable="false" auto-create-binding="true" can-attach-label="false">
+        <default-constraints vsize-policy="6" hsize-policy="2" anchor="0" fill="3">
+          <preferred-size width="150" height="50" />
+        </default-constraints>
+      </item>
+      <item class="javax.swing.JTree" icon="/com/intellij/uiDesigner/icons/tree.png" removable="false" auto-create-binding="true" can-attach-label="false">
+        <default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
+          <preferred-size width="150" height="50" />
+        </default-constraints>
+      </item>
+      <item class="javax.swing.JTabbedPane" icon="/com/intellij/uiDesigner/icons/tabbedPane.png" removable="false" auto-create-binding="true" can-attach-label="false">
+        <default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3">
+          <preferred-size width="200" height="200" />
+        </default-constraints>
+      </item>
+      <item class="javax.swing.JSplitPane" icon="/com/intellij/uiDesigner/icons/splitPane.png" removable="false" auto-create-binding="false" can-attach-label="false">
+        <default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3">
+          <preferred-size width="200" height="200" />
+        </default-constraints>
+      </item>
+      <item class="javax.swing.JSpinner" icon="/com/intellij/uiDesigner/icons/spinner.png" removable="false" auto-create-binding="true" can-attach-label="true">
+        <default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1" />
+      </item>
+      <item class="javax.swing.JSlider" icon="/com/intellij/uiDesigner/icons/slider.png" removable="false" auto-create-binding="true" can-attach-label="false">
+        <default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1" />
+      </item>
+      <item class="javax.swing.JSeparator" icon="/com/intellij/uiDesigner/icons/separator.png" removable="false" auto-create-binding="false" can-attach-label="false">
+        <default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3" />
+      </item>
+      <item class="javax.swing.JProgressBar" icon="/com/intellij/uiDesigner/icons/progressbar.png" removable="false" auto-create-binding="true" can-attach-label="false">
+        <default-constraints vsize-policy="0" hsize-policy="6" anchor="0" fill="1" />
+      </item>
+      <item class="javax.swing.JToolBar" icon="/com/intellij/uiDesigner/icons/toolbar.png" removable="false" auto-create-binding="false" can-attach-label="false">
+        <default-constraints vsize-policy="0" hsize-policy="6" anchor="0" fill="1">
+          <preferred-size width="-1" height="20" />
+        </default-constraints>
+      </item>
+      <item class="javax.swing.JToolBar$Separator" icon="/com/intellij/uiDesigner/icons/toolbarSeparator.png" removable="false" auto-create-binding="false" can-attach-label="false">
+        <default-constraints vsize-policy="0" hsize-policy="0" anchor="0" fill="1" />
+      </item>
+      <item class="javax.swing.JScrollBar" icon="/com/intellij/uiDesigner/icons/scrollbar.png" removable="false" auto-create-binding="true" can-attach-label="false">
+        <default-constraints vsize-policy="6" hsize-policy="0" anchor="0" fill="2" />
+      </item>
+    </group>
+  </component>
+</project>

+ 4 - 0
README.md

@@ -0,0 +1,4 @@
+# 项目说明 modbus4j封装
+
+
+

+ 146 - 0
pom.xml

@@ -0,0 +1,146 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+
+  <groupId>com.jwk</groupId>
+  <artifactId>modbus-spring-boot-starter</artifactId>
+  <version>1.0</version>
+
+  <name>modbus-spring-boot-starter</name>
+
+  <properties>
+    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    <maven.compiler.source>1.8</maven.compiler.source>
+    <maven.compiler.target>1.8</maven.compiler.target>
+  </properties>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.springframework.boot</groupId>
+      <artifactId>spring-boot-starter-web</artifactId>
+      <version>2.2.4.RELEASE</version>
+    </dependency>
+<!--    生成配置文件提示-->
+    <dependency>
+      <groupId>org.springframework.boot</groupId>
+      <artifactId>spring-boot-configuration-processor</artifactId>
+      <version>2.2.4.RELEASE</version>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.11</version>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.projectlombok</groupId>
+      <artifactId>lombok</artifactId>
+      <version>1.18.10</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+      <version>1.7.7</version>
+    </dependency>
+
+    <!-- springboot自带logback-->
+    <dependency>
+      <groupId>ch.qos.logback</groupId>
+      <artifactId>logback-core</artifactId>
+      <version>1.1.11</version>
+    </dependency>
+    <dependency>
+      <groupId>ch.qos.logback</groupId>
+      <artifactId>logback-classic</artifactId>
+      <version>1.1.11</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-lang3</artifactId>
+      <version>3.9</version>
+    </dependency>
+
+
+    <!--modbus4j start-->
+    <dependency>
+      <groupId>com.RXTXcomm</groupId>
+      <artifactId>RXTXcomm</artifactId>
+      <version>3.0.5</version>
+      <scope>system</scope>
+      <systemPath>${project.basedir}/src/main/resources/lib/RXTXcomm.jar</systemPath>
+    </dependency>
+    <dependency>
+      <groupId>com.serotonin</groupId>
+      <artifactId>modbus4j</artifactId>
+      <version>3.0.5</version>
+      <scope>system</scope>
+      <systemPath>${project.basedir}/src/main/resources/lib/modbus4j-3.0.5.jar</systemPath>
+    </dependency>
+    <dependency>
+      <groupId>org.scream3r</groupId>
+      <artifactId>jssc</artifactId>
+      <version>2.8.0</version>
+      <scope>system</scope>
+      <systemPath>${project.basedir}/src/main/resources/lib/jssc-2.8.0.jar</systemPath>
+    </dependency>
+    <!--modbus4j end-->
+  </dependencies>
+
+  <build>
+    <finalName>${project.artifactId}</finalName>
+    <extensions>
+      <extension>
+        <groupId>org.apache.maven.wagon</groupId>
+        <artifactId>wagon-ssh</artifactId>
+        <version>2.8</version>
+      </extension>
+    </extensions>
+    <plugins>
+      <plugin>
+        <groupId>org.springframework.boot</groupId>
+        <artifactId>spring-boot-maven-plugin</artifactId>
+        <configuration>
+          <includeSystemScope>true</includeSystemScope>
+        </configuration>
+      </plugin>
+      <!-- 跳过单元测试 -->
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <skipTests>true</skipTests>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+  <repositories>
+    <repository>
+      <id>public</id>
+      <name>aliyun nexus</name>
+      <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
+      <releases>
+        <enabled>true</enabled>
+      </releases>
+    </repository>
+  </repositories>
+  <pluginRepositories>
+    <pluginRepository>
+      <id>public</id>
+      <name>aliyun nexus</name>
+      <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
+      <releases>
+        <enabled>true</enabled>
+      </releases>
+      <snapshots>
+        <enabled>false</enabled>
+      </snapshots>
+    </pluginRepository>
+  </pluginRepositories>
+</project>

+ 32 - 0
src/main/java/com/jwk/spring/boot/autoconfigure/ModbusAutoConfiguration.java

@@ -0,0 +1,32 @@
+package com.jwk.spring.boot.autoconfigure;
+
+import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
+import org.springframework.boot.context.properties.EnableConfigurationProperties;
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Configuration;
+
+/**
+ * @author JWK
+ * @version 1.0
+ * @date 2022/12/2 14:46
+ */
+@EnableConfigurationProperties(ModbusProperties.class)
+@Configuration
+public class ModbusAutoConfiguration {
+
+
+    @Bean
+    @ConditionalOnProperty(prefix = "modbus.rtu-master", name = "open", havingValue = "true")
+    public ModbusRtuMasterTemplate modbusRtuMasterTemplate(ModbusProperties modbusProperties) {
+        ModbusProperties.RtuMaster rtu = modbusProperties.getRtuMaster();
+        return new ModbusRtuMasterTemplate(rtu.getPort(), rtu.getBaudRate(), rtu.getDataBits()
+                , rtu.getStopBits(), rtu.getParity(), rtu.getFlowControlIn(), rtu.getFlowControlOut());
+    }
+
+    @Bean
+    @ConditionalOnProperty(prefix = "modbus.tcp-master", name = "open", havingValue = "true")
+    public ModbusTcpMasterTemplate modbusTcpMasterTemplate(ModbusProperties modbusProperties) {
+        ModbusProperties.TcpMaster tcp = modbusProperties.getTcpMaster();
+        return new ModbusTcpMasterTemplate(tcp.getHost(), tcp.getPort());
+    }
+}

+ 80 - 0
src/main/java/com/jwk/spring/boot/autoconfigure/ModbusProperties.java

@@ -0,0 +1,80 @@
+package com.jwk.spring.boot.autoconfigure;
+
+import lombok.Data;
+import org.springframework.boot.context.properties.ConfigurationProperties;
+
+/**
+ * @author JWK
+ * @version 1.0
+ * @date 2022/12/2 15:40
+ */
+@Data
+@ConfigurationProperties(prefix = ModbusProperties.DEMO_PREFIX)
+public class ModbusProperties {
+
+    public static final String DEMO_PREFIX = "modbus";
+
+    private RtuMaster rtuMaster;
+    private TcpMaster tcpMaster;
+
+    @Data
+    public static class RtuMaster {
+        /**
+         * 是否打开串口
+         */
+        private boolean open = false;
+        /**
+         * 串口
+         */
+        private String port = "COM1";
+
+        /**
+         * 波特率
+         */
+        private Integer baudRate = 9600;
+
+        /**
+         * 数据位的位数,RTU是8位,ASCII是7位
+         */
+        private Integer dataBits = 8;
+
+        /**
+         * 停止位的位数,如果无奇偶校验为2,有奇偶校验为1
+         */
+        private Integer stopBits = 1;
+
+        /**
+         * 奇偶校验位,无校验是0,奇校验是1,偶校验是2
+         */
+        private Integer parity = 0;
+
+        /**
+         * 硬件之间输入流应答控制
+         */
+        private Integer flowControlIn = 0;
+
+        /**
+         * 硬件之间输出流应答控制
+         */
+        private Integer flowControlOut = 0;
+
+    }
+
+    @Data
+    public static class TcpMaster {
+        /**
+         * 是否打开Tcp连接
+         */
+        private boolean open = false;
+
+        /**
+         * ip
+         */
+        private String host = "localhost";
+
+        /**
+         * 端口
+         */
+        private Integer port;
+    }
+}

+ 44 - 0
src/main/java/com/jwk/spring/boot/autoconfigure/ModbusRtuMasterTemplate.java

@@ -0,0 +1,44 @@
+package com.jwk.spring.boot.autoconfigure;
+
+import com.jwk.spring.boot.modbus4j.ModbusMasterUtil;
+import com.jwk.spring.boot.modbus4j.ModbusRtuMaster;
+import com.serotonin.modbus4j.exception.ModbusInitException;
+
+
+/**
+ * @author JWK
+ * @version 1.0
+ * @date 2022/9/7 17:00
+ */
+public class ModbusRtuMasterTemplate {
+
+
+    private ModbusRtuMaster modbusRtuMaster;
+    private ModbusMasterUtil modbusMasterUtil;
+
+
+    /**
+     * 初始化串口连接
+     *
+     * @param port
+     * @param baudRate
+     * @param dataBits
+     * @param stopBits
+     * @param parity
+     * @param flowControlIn
+     * @param flowControlOut
+     * @throws ModbusInitException
+     */
+    public ModbusRtuMasterTemplate(String port, int baudRate, int dataBits, int stopBits, int parity
+            , int flowControlIn, int flowControlOut) {
+        modbusRtuMaster = new ModbusRtuMaster(port, baudRate, dataBits, stopBits, parity
+                , flowControlIn, flowControlOut);
+        modbusRtuMaster.connectAsync();
+        modbusMasterUtil = modbusRtuMaster.getModbusMasterUtil();
+    }
+
+    public ModbusMasterUtil getModbusMasterUtil() {
+        return modbusMasterUtil;
+    }
+
+}

+ 33 - 0
src/main/java/com/jwk/spring/boot/autoconfigure/ModbusTcpMasterTemplate.java

@@ -0,0 +1,33 @@
+package com.jwk.spring.boot.autoconfigure;
+
+import com.jwk.spring.boot.modbus4j.ModbusMasterUtil;
+import com.jwk.spring.boot.modbus4j.ModbusTcpMaster;
+
+
+/**
+ * @author JWK
+ * @version 1.0
+ * @date 2022/9/7 17:00
+ */
+public class ModbusTcpMasterTemplate {
+
+
+    private ModbusTcpMaster modbusTcpMaster;
+    private ModbusMasterUtil modbusMasterUtil;
+
+    /**
+     * 初始化连接
+     *
+     * @param host
+     * @param port
+     */
+    public ModbusTcpMasterTemplate(String host, Integer port) {
+        modbusTcpMaster = new ModbusTcpMaster(host, port);
+        modbusTcpMaster.connectAsync();
+    }
+
+    public ModbusMasterUtil getModbusMasterUtil() {
+        modbusMasterUtil = modbusTcpMaster.getModbusMasterUtil();
+        return modbusMasterUtil;
+    }
+}

+ 43 - 0
src/main/java/com/jwk/spring/boot/constant/Constant.java

@@ -0,0 +1,43 @@
+package com.jwk.spring.boot.constant;
+
+/**
+ * @Author JWK
+ * @Date 2021/7/20
+ * @Version 1.0
+ */
+public class Constant {
+
+
+    /**
+     * 功能码
+     */
+    public enum FUNCTION_CODE {
+        /***
+         * 读线圈寄存器
+         */
+        READ_01H(0x01),
+        /***
+         * 读保持寄存器
+         */
+        READ_03H(0x03),
+        /***
+         * 写单个线圈寄存器
+         */
+        WRITE_05H(0x05),
+        /***
+         * 写单个保持寄存器
+         */
+        WRITE_06H(0x06);
+
+        private Integer value;
+
+        FUNCTION_CODE(Integer value) {
+            this.value = value;
+        }
+
+        public Integer getValue() {
+            return value;
+        }
+    }
+
+}

+ 67 - 0
src/main/java/com/jwk/spring/boot/constant/DATA_TYPE_WRAPPER.java

@@ -0,0 +1,67 @@
+package com.jwk.spring.boot.constant;
+
+import com.serotonin.modbus4j.code.DataType;
+
+/**
+ * 包装DataType
+ *
+ * @author JWK
+ * @version 1.0
+ * @date 2022/12/12 22:45
+ * {@link com.serotonin.modbus4j.code.DataType}
+ */
+public enum DATA_TYPE_WRAPPER {
+    BINARY(DataType.BINARY),
+    TWO_BYTE_INT_UNSIGNED(DataType.TWO_BYTE_INT_UNSIGNED),
+    TWO_BYTE_INT_SIGNED(DataType.TWO_BYTE_INT_SIGNED),
+    TWO_BYTE_INT_UNSIGNED_SWAPPED(DataType.TWO_BYTE_INT_UNSIGNED_SWAPPED),
+    TWO_BYTE_INT_SIGNED_SWAPPED(DataType.TWO_BYTE_INT_SIGNED_SWAPPED),
+    FOUR_BYTE_INT_UNSIGNED(DataType.FOUR_BYTE_INT_UNSIGNED),
+    FOUR_BYTE_INT_SIGNED(DataType.FOUR_BYTE_INT_SIGNED),
+    FOUR_BYTE_INT_UNSIGNED_SWAPPED(DataType.FOUR_BYTE_INT_UNSIGNED_SWAPPED),
+    FOUR_BYTE_INT_SIGNED_SWAPPED(DataType.FOUR_BYTE_INT_SIGNED_SWAPPED),
+    FOUR_BYTE_INT_UNSIGNED_SWAPPED_SWAPPED(DataType.FOUR_BYTE_INT_UNSIGNED_SWAPPED_SWAPPED),
+    FOUR_BYTE_INT_SIGNED_SWAPPED_SWAPPED(DataType.FOUR_BYTE_INT_SIGNED_SWAPPED_SWAPPED),
+    FOUR_BYTE_FLOAT(DataType.FOUR_BYTE_FLOAT),
+    FOUR_BYTE_FLOAT_SWAPPED(DataType.FOUR_BYTE_FLOAT_SWAPPED),
+    FOUR_BYTE_FLOAT_SWAPPED_INVERTED(DataType.FOUR_BYTE_FLOAT_SWAPPED_INVERTED),
+    EIGHT_BYTE_INT_UNSIGNED(DataType.EIGHT_BYTE_INT_UNSIGNED),
+    EIGHT_BYTE_INT_SIGNED(DataType.EIGHT_BYTE_INT_SIGNED),
+    EIGHT_BYTE_INT_UNSIGNED_SWAPPED(DataType.EIGHT_BYTE_INT_UNSIGNED_SWAPPED),
+    EIGHT_BYTE_INT_SIGNED_SWAPPED(DataType.EIGHT_BYTE_INT_SIGNED_SWAPPED),
+    EIGHT_BYTE_FLOAT(DataType.EIGHT_BYTE_FLOAT),
+    EIGHT_BYTE_FLOAT_SWAPPED(DataType.EIGHT_BYTE_FLOAT_SWAPPED),
+    TWO_BYTE_BCD(DataType.TWO_BYTE_BCD),
+    FOUR_BYTE_BCD(DataType.FOUR_BYTE_BCD),
+    FOUR_BYTE_BCD_SWAPPED(DataType.FOUR_BYTE_BCD_SWAPPED),
+    CHAR(DataType.CHAR),
+    VARCHAR(DataType.VARCHAR),
+    FOUR_BYTE_MOD_10K(DataType.FOUR_BYTE_MOD_10K),
+    SIX_BYTE_MOD_10K(DataType.SIX_BYTE_MOD_10K),
+    EIGHT_BYTE_MOD_10K(DataType.EIGHT_BYTE_MOD_10K),
+    FOUR_BYTE_MOD_10K_SWAPPED(DataType.FOUR_BYTE_MOD_10K_SWAPPED),
+    SIX_BYTE_MOD_10K_SWAPPED(DataType.SIX_BYTE_MOD_10K_SWAPPED),
+    EIGHT_BYTE_MOD_10K_SWAPPED(DataType.EIGHT_BYTE_MOD_10K_SWAPPED),
+    ONE_BYTE_INT_UNSIGNED_LOWER(DataType.ONE_BYTE_INT_UNSIGNED_LOWER),
+    ONE_BYTE_INT_UNSIGNED_UPPER(DataType.ONE_BYTE_INT_UNSIGNED_UPPER);
+    private int value;
+
+    DATA_TYPE_WRAPPER(int value) {
+        this.value = value;
+    }
+
+    public static int getRegisterCount(int id) {
+        return DataType.getRegisterCount(id);
+    }
+
+    public static Class<?> getJavaType(int id) {
+        return DataType.getJavaType(id);
+    }
+
+
+    public int getValue() {
+        return value;
+    }
+
+}
+

+ 158 - 0
src/main/java/com/jwk/spring/boot/modbus4j/ModbusMasterUtil.java

@@ -0,0 +1,158 @@
+package com.jwk.spring.boot.modbus4j;
+
+import com.jwk.spring.boot.constant.DATA_TYPE_WRAPPER;
+import com.serotonin.modbus4j.ModbusMaster;
+import com.serotonin.modbus4j.locator.BaseLocator;
+import com.serotonin.modbus4j.msg.*;
+import lombok.extern.slf4j.Slf4j;
+
+/**
+ * @author JWK
+ * @version 1.0
+ * @date 2022/12/12 22:10
+ */
+@Slf4j
+public class ModbusMasterUtil {
+
+    private ModbusMaster master;
+
+    public ModbusMasterUtil(ModbusMaster master) {
+        this.master = master;
+    }
+
+    /**
+     * 读单个线圈寄存器 01
+     *
+     * @param slaveId
+     * @param offset
+     * @return 读取值
+     */
+    public Boolean readCoil(int slaveId, int offset) {
+        Boolean value = null;
+        BaseLocator<Boolean> loc = BaseLocator.coilStatus(slaveId, offset);
+        try {
+            value = master.getValue(loc);
+        } catch (Exception e) {
+            log.error("读单个线圈寄存器失败:" + e.getMessage(), e);
+        }
+        return value;
+    }
+
+    /**
+     * 读线圈寄存器 01
+     *
+     * @param slaveId
+     * @param offset
+     * @param len
+     */
+    public ReadResponse readCoils(int slaveId, int offset, int len) {
+        try {
+            ReadCoilsRequest request = new ReadCoilsRequest(slaveId, offset, len);
+            ReadCoilsResponse response = (ReadCoilsResponse) master.send(request);
+            if (response.isException()) {
+                log.error("读线圈寄存器错误:" + response.getExceptionMessage());
+                return null;
+            }
+            return response;
+        } catch (Exception e) {
+            log.error("读线圈寄存器失败:" + e.getMessage(), e);
+        }
+        return null;
+    }
+
+    /**
+     * 写单个线圈寄存器 05
+     *
+     * @param slaveId
+     * @param offset
+     * @param value   0x0000 false | 0xFF00 true
+     */
+    public Boolean writeCoil(int slaveId, int offset, int value) {
+        Boolean con = value == 0x0000 ? false : value == 0xFF00 ? true : null;
+        return writeCoil(slaveId, offset, con);
+    }
+
+    /**
+     * 写单个线圈寄存器 05
+     *
+     * @param slaveId
+     * @param offset
+     * @param value
+     */
+    public Boolean writeCoil(int slaveId, int offset, boolean value) {
+        try {
+            WriteCoilRequest request = new WriteCoilRequest(slaveId, offset, value);
+            WriteCoilResponse response = (WriteCoilResponse) master.send(request);
+            if (response.isException()) {
+                log.error("写单个线圈寄存器错误:" + response.getExceptionMessage());
+                return false;
+            }
+            return true;
+        } catch (Exception e) {
+            log.error("写单个线圈寄存器失败:" + e.getMessage(), e);
+        }
+        return false;
+    }
+
+    /**
+     * 读取单个保持寄存器 03
+     *
+     * @param slaveId  从节点
+     * @param offset   位置
+     * @param dataType 数据类型 {@link com.serotonin.modbus4j.code.DataType}{@link DATA_TYPE_WRAPPER}
+     */
+    public Number readHoldingRegister(int slaveId, int offset, DATA_TYPE_WRAPPER dataType) {
+        BaseLocator<Number> loc = BaseLocator.holdingRegister(slaveId, offset, dataType.getValue());
+        Number value = null;
+        try {
+            value = master.getValue(loc);
+        } catch (Exception e) {
+            log.error("读取单个保持寄存器失败::" + e.getMessage(), e);
+        }
+        return value;
+    }
+
+    /**
+     * 读取保持寄存器 03
+     *
+     * @param slaveId
+     * @param offset
+     * @param len
+     */
+    public ReadResponse readHoldingRegisters(int slaveId, int offset, int len) {
+        try {
+            ReadHoldingRegistersRequest request = new ReadHoldingRegistersRequest(slaveId, offset, len);
+            ReadHoldingRegistersResponse response = (ReadHoldingRegistersResponse) master.send(request);
+            if (response.isException()) {
+                log.error("读取保持寄存器错误:" + response.getExceptionMessage());
+                return null;
+            }
+            return response;
+        } catch (Exception e) {
+            log.error("读取保持寄存器失败:" + e.getMessage(), e);
+        }
+        return null;
+    }
+
+    /**
+     * 写单个保持寄存器 06
+     *
+     * @param slaveId
+     * @param offset
+     * @param value
+     */
+    public Boolean writeHoldingRegisters(int slaveId, int offset, int value) {
+        try {
+            WriteRegisterRequest request = new WriteRegisterRequest(slaveId, offset, value);
+            WriteRegisterResponse response = (WriteRegisterResponse) master.send(request);
+            if (response.isException()) {
+                log.error("写保持寄存器错误:" + response.getExceptionMessage());
+                return false;
+            }
+            return true;
+        } catch (Exception e) {
+            log.error("写保持寄存器失败:" + e.getMessage(), e);
+        }
+        return false;
+    }
+}

+ 98 - 0
src/main/java/com/jwk/spring/boot/modbus4j/ModbusRtuMaster.java

@@ -0,0 +1,98 @@
+package com.jwk.spring.boot.modbus4j;
+
+import com.jwk.spring.boot.modbus4j.util.rtu.SerialPortWrapperImpl;
+import com.serotonin.modbus4j.ModbusFactory;
+import com.serotonin.modbus4j.ModbusMaster;
+import com.serotonin.modbus4j.exception.ModbusInitException;
+import lombok.Data;
+import lombok.extern.slf4j.Slf4j;
+
+import java.util.concurrent.Executors;
+import java.util.concurrent.locks.Lock;
+import java.util.concurrent.locks.ReentrantLock;
+
+
+/**
+ * @author JWK
+ * @version 1.0
+ * @date 2022/9/7 17:00
+ */
+@Slf4j
+@Data
+public class ModbusRtuMaster extends SerialPortWrapperImpl {
+
+    private ModbusMaster master = null;
+    private ModbusFactory modbusFactory = null;
+    private ModbusMasterUtil modbusMasterUtil = null;
+    private Lock lock = new ReentrantLock();
+
+    /**
+     * 初始化串口连接
+     *
+     * @param port
+     * @param baudRate
+     * @param dataBits
+     * @param stopBits
+     * @param parity
+     * @param flowControlIn
+     * @param flowControlOut
+     * @throws ModbusInitException
+     */
+    public ModbusRtuMaster(String port, int baudRate, int dataBits, int stopBits, int parity,
+                           int flowControlIn, int flowControlOut) {
+        super(port, baudRate, dataBits, stopBits, parity, flowControlIn, flowControlOut);
+    }
+
+    /**
+     * 打开串口 异步
+     *
+     * @throws ModbusInitException
+     */
+    public void connectAsync() {
+        Executors.newSingleThreadExecutor().execute(() -> this.connect());
+    }
+
+    /**
+     * 打开串口
+     *
+     * @throws ModbusInitException
+     */
+    public void connect() {
+        for (; ; ) {
+            try {
+                if (!lock.tryLock()) {
+                    break;
+                }
+                if (modbusFactory == null) {
+                    modbusFactory = new ModbusFactory();
+                }
+                master = modbusFactory.createRtuMaster(this);
+                master.init();
+                modbusMasterUtil = new ModbusMasterUtil(master);
+                break;
+            } catch (Exception e) {
+                log.error("当前串口:{},打开失败!", getPort(), e);
+                try {
+                    Thread.sleep(3000);
+                } catch (InterruptedException ee) {
+
+                }
+            } finally {
+                lock.unlock();
+            }
+        }
+    }
+
+    /**
+     * 重新连接串口
+     */
+    public void reConnect() {
+        try {
+            this.close();
+            Thread.sleep(1000);
+        } catch (Exception e) {
+
+        }
+        connect();
+    }
+}

+ 99 - 0
src/main/java/com/jwk/spring/boot/modbus4j/ModbusTcpMaster.java

@@ -0,0 +1,99 @@
+package com.jwk.spring.boot.modbus4j;
+
+import com.serotonin.modbus4j.ModbusFactory;
+import com.serotonin.modbus4j.ModbusMaster;
+import com.serotonin.modbus4j.exception.ModbusInitException;
+import com.serotonin.modbus4j.ip.IpParameters;
+import lombok.Data;
+import lombok.extern.slf4j.Slf4j;
+
+import java.util.concurrent.Executors;
+import java.util.concurrent.locks.Lock;
+import java.util.concurrent.locks.ReentrantLock;
+
+
+/**
+ * @author JWK
+ * @version 1.0
+ * @date 2022/9/7 17:00
+ */
+@Slf4j
+@Data
+public class ModbusTcpMaster {
+
+    private ModbusMaster master = null;
+    private ModbusFactory modbusFactory = null;
+    private ModbusMasterUtil modbusMasterUtil = null;
+    private Lock lock = new ReentrantLock();
+
+    private String host;
+    private Integer port;
+
+    /**
+     * 初始化
+     *
+     * @param host
+     * @param port
+     * @throws ModbusInitException
+     */
+    public ModbusTcpMaster(String host, Integer port) {
+        this.host = host;
+        this.port = port;
+        modbusFactory = new ModbusFactory();
+
+    }
+
+    /**
+     * 打开串口 异步
+     *
+     * @throws ModbusInitException
+     */
+    public void connectAsync() {
+        Executors.newSingleThreadExecutor().execute(() -> this.connect());
+    }
+
+    /**
+     * 连接
+     *
+     * @throws ModbusInitException
+     */
+    public void connect() {
+        for (; ; ) {
+            try {
+                if (!lock.tryLock()) {
+                    break;
+                }
+                IpParameters params = new IpParameters();
+                params.setHost(host);
+                params.setPort(port);
+                master = modbusFactory.createTcpMaster(params, true);
+                master.init();
+                modbusMasterUtil = new ModbusMasterUtil(master);
+                break;
+            } catch (Exception e) {
+                log.error("当前串口:{},打开失败!", getPort(), e);
+                try {
+                    Thread.sleep(3000);
+                } catch (InterruptedException ee) {
+
+                }
+            } finally {
+                lock.unlock();
+            }
+        }
+    }
+
+    /**
+     * 重新连接串口
+     */
+    public void reConnect() {
+        try {
+            master = null;
+            connect();
+            Thread.sleep(1000);
+        } catch (Exception e) {
+
+        }
+        connect();
+    }
+}

+ 22 - 0
src/main/java/com/jwk/spring/boot/modbus4j/util/rtu/MyProcessImageListener.java

@@ -0,0 +1,22 @@
+package com.jwk.spring.boot.modbus4j.util.rtu;
+
+import com.serotonin.modbus4j.ProcessImageListener;
+
+/**
+ * 用于从站监听
+ *
+ * @author jwk
+ * @date 2020/12/26
+ */
+public class MyProcessImageListener implements ProcessImageListener {
+
+    @Override
+    public void coilWrite(int offset, boolean oldValue, boolean newValue) {
+        System.out.println("线圈状态地址=" + offset + ",旧值=" + oldValue + ",新值=" + newValue);
+    }
+
+    @Override
+    public void holdingRegisterWrite(int offset, short oldValue, short newValue) {
+        System.out.println("保持寄存器地址=" + offset + ",旧值=" + oldValue + ",新值=" + newValue);
+    }
+}

+ 61 - 0
src/main/java/com/jwk/spring/boot/modbus4j/util/rtu/SerialPortUtils.java

@@ -0,0 +1,61 @@
+package com.jwk.spring.boot.modbus4j.util.rtu;
+
+import gnu.io.CommPort;
+import gnu.io.CommPortIdentifier;
+import gnu.io.SerialPort;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+/**
+ * 串口工具类
+ * @author wusq
+ * @date 2021/1/1
+ */
+public class SerialPortUtils {
+
+    private static Logger log = LoggerFactory.getLogger(SerialPortUtils.class);
+
+    /**
+     * 打卡串口
+     * @param portName 串口名
+     * @param baudRate 波特率
+     * @param dataBits 数据位
+     * @param stopBits 停止位
+     * @param parity 校验位
+     * @return 串口对象
+     */
+    public static SerialPort open(String portName, Integer baudRate, Integer dataBits,
+                                  Integer stopBits, Integer parity) {
+        SerialPort result = null;
+        try {
+            // 通过端口名识别端口
+            CommPortIdentifier identifier = CommPortIdentifier.getPortIdentifier(portName);
+            // 打开端口,并给端口名字和一个timeout(打开操作的超时时间)
+            CommPort commPort = identifier.open(portName, 2000);
+            // 判断是不是串口
+            if (commPort instanceof SerialPort) {
+                result = (SerialPort) commPort;
+                // 设置一下串口的波特率等参数
+                result.setSerialPortParams(baudRate, dataBits, stopBits, parity);
+                log.info("打开串口{}成功", portName);
+            }else{
+                log.info("{}不是串口", portName);
+            }
+        } catch (Exception e) {
+            log.error("打开串口{}错误", portName, e);
+        }
+        return result;
+    }
+
+    /**
+     * 关闭串口
+     * @param serialPort
+     */
+    public static void close(SerialPort serialPort) {
+        if (serialPort != null) {
+            serialPort.close();
+            log.warn("串口{}关闭", serialPort.getName());
+        }
+    }
+
+}

+ 178 - 0
src/main/java/com/jwk/spring/boot/modbus4j/util/rtu/SerialPortWrapperImpl.java

@@ -0,0 +1,178 @@
+package com.jwk.spring.boot.modbus4j.util.rtu;
+
+import com.serotonin.modbus4j.serial.SerialPortWrapper;
+import gnu.io.SerialPort;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+import java.io.IOException;
+import java.io.InputStream;
+import java.io.OutputStream;
+
+/**
+ * 自定义串口封装
+ * @author jwk
+ * @date 2021/1/3
+ */
+public class SerialPortWrapperImpl implements SerialPortWrapper {
+
+    private final Logger log = LoggerFactory.getLogger(this.getClass());
+
+    /**
+     * 串口对象
+     */
+    private SerialPort serialPort;
+
+    /**
+     * 串口
+     */
+    private String port;
+
+    /**
+     * 波特率
+     */
+    private Integer baudRate;
+
+    /**
+     * 数据位的位数,RTU是8位,ASCII是7位
+     */
+    private Integer dataBits;
+
+    /**
+     * 停止位的位数,如果无奇偶校验为2,有奇偶校验为1
+     */
+    private Integer stopBits;
+
+    /**
+     * 奇偶校验位,无校验是0,奇校验是1,偶校验是2
+     */
+    private Integer parity;
+
+    /**
+     * 硬件之间输入流应答控制
+     */
+    private Integer flowControlIn;
+
+    /**
+     * 硬件之间输出流应答控制
+     */
+    private Integer flowControlOut;
+
+    public SerialPortWrapperImpl() {
+        super();
+    }
+
+    public SerialPortWrapperImpl(String port, int baudRate, int dataBits, int stopBits, int parity,
+            int flowControlIn, int flowControlOut) {
+        this.port = port;
+        this.baudRate = baudRate;
+        this.dataBits = dataBits;
+        this.stopBits = stopBits;
+        this.parity = parity;
+        this.flowControlIn = flowControlIn;
+        this.flowControlOut = flowControlOut;
+    }
+
+    @Override
+    public void close() throws Exception {
+        SerialPortUtils.close(serialPort);
+    }
+
+    @Override
+    public void open() throws Exception {
+        serialPort = SerialPortUtils.open(port, baudRate, dataBits, stopBits, parity);
+    }
+
+    @Override
+    public InputStream getInputStream() {
+        InputStream in = null;
+        try {
+            in = serialPort.getInputStream();
+        } catch (IOException e) {
+            log.error("获取串口输入流错误", e);
+        }
+
+        return in;
+    }
+
+    @Override
+    public OutputStream getOutputStream() {
+        OutputStream out = null;
+        try {
+            out = serialPort.getOutputStream();
+        } catch (IOException e) {
+            log.error("获取串口输出流错误", e);
+        }
+
+        return out;
+    }
+
+    @Override
+    public int getBaudRate() {
+        return this.baudRate;
+    }
+
+    @Override
+    public int getDataBits() {
+        return this.dataBits;
+    }
+
+    @Override
+    public int getStopBits() {
+        return this.stopBits;
+    }
+
+    @Override
+    public int getParity() {
+        return this.parity;
+    }
+
+    public int getFlowControlIn() {
+        return this.flowControlIn;
+    }
+
+
+    public int getFlowControlOut() {
+        return this.flowControlOut;
+    }
+
+    public SerialPort getSerialPort() {
+        return serialPort;
+    }
+
+    public void setSerialPort(SerialPort serialPort) {
+        this.serialPort = serialPort;
+    }
+
+    public String getPort() {
+        return port;
+    }
+
+    public void setPort(String port) {
+        this.port = port;
+    }
+
+    public void setBaudRate(Integer baudRate) {
+        this.baudRate = baudRate;
+    }
+
+    public void setDataBits(Integer dataBits) {
+        this.dataBits = dataBits;
+    }
+
+    public void setStopBits(Integer stopBits) {
+        this.stopBits = stopBits;
+    }
+
+    public void setParity(Integer parity) {
+        this.parity = parity;
+    }
+
+    public void setFlowControlIn(Integer flowControlIn) {
+        this.flowControlIn = flowControlIn;
+    }
+
+    public void setFlowControlOut(Integer flowControlOut) {
+        this.flowControlOut = flowControlOut;
+    }
+}

+ 191 - 0
src/main/java/com/jwk/spring/boot/test/ModbusTcpMasterUtil.java

@@ -0,0 +1,191 @@
+package com.jwk.spring.boot.test;
+
+import com.serotonin.modbus4j.BatchRead;
+import com.serotonin.modbus4j.BatchResults;
+import com.serotonin.modbus4j.ModbusFactory;
+import com.serotonin.modbus4j.ModbusMaster;
+import com.serotonin.modbus4j.code.DataType;
+import com.serotonin.modbus4j.exception.ErrorResponseException;
+import com.serotonin.modbus4j.exception.ModbusInitException;
+import com.serotonin.modbus4j.exception.ModbusTransportException;
+import com.serotonin.modbus4j.ip.IpParameters;
+import com.serotonin.modbus4j.locator.BaseLocator;
+
+/**
+ *
+ * todo 这是另一种读法 先保存在这里
+ * modbus通讯工具类,采用modbus4j实现
+ *
+ * @author lxq
+ * @dependencies modbus4j-3.0.3.jar
+ * @website https://github.com/infiniteautomation/modbus4j
+ */
+public class ModbusTcpMasterUtil {
+    /**
+     * 工厂。
+     */
+    static ModbusFactory modbusFactory;
+
+    static {
+        if (modbusFactory == null) {
+            modbusFactory = new ModbusFactory();
+        }
+    }
+
+    /**
+     * 获取master
+     *
+     * @return
+     * @throws ModbusInitException
+     */
+    public static ModbusMaster getMaster() throws ModbusInitException {
+        IpParameters params = new IpParameters();
+        params.setHost("localhost");
+        params.setPort(502);
+        //
+        // modbusFactory.createRtuMaster(wapper); //RTU 协议
+        // modbusFactory.createUdpMaster(params);//UDP 协议
+        // modbusFactory.createAsciiMaster(wrapper);//ASCII 协议
+        ModbusMaster master = modbusFactory.createTcpMaster(params, false);// TCP 协议
+        master.init();
+
+        return master;
+    }
+
+    /**
+     * 读取[01 Coil Status 0x]类型 开关数据
+     *
+     * @param slaveId slaveId
+     * @param offset  位置
+     * @return 读取值
+     * @throws ModbusTransportException 异常
+     * @throws ErrorResponseException   异常
+     * @throws ModbusInitException      异常
+     */
+    public static Boolean readCoilStatus(int slaveId, int offset)
+            throws ModbusTransportException, ErrorResponseException, ModbusInitException {
+        // 01 Coil Status
+        BaseLocator<Boolean> loc = BaseLocator.coilStatus(slaveId, offset);
+        Boolean value = getMaster().getValue(loc);
+        return value;
+    }
+
+    /**
+     * 读取[02 Input Status 1x]类型 开关数据
+     *
+     * @param slaveId
+     * @param offset
+     * @return
+     * @throws ModbusTransportException
+     * @throws ErrorResponseException
+     * @throws ModbusInitException
+     */
+    public static Boolean readInputStatus(int slaveId, int offset)
+            throws ModbusTransportException, ErrorResponseException, ModbusInitException {
+        // 02 Input Status
+        BaseLocator<Boolean> loc = BaseLocator.inputStatus(slaveId, offset);
+        Boolean value = getMaster().getValue(loc);
+        return value;
+    }
+
+    /**
+     * 读取[03 Holding Register类型 2x]模拟量数据
+     *
+     * @param slaveId  slave Id
+     * @param offset   位置
+     * @param dataType 数据类型,来自com.serotonin.modbus4j.code.DataType
+     * @return
+     * @throws ModbusTransportException 异常
+     * @throws ErrorResponseException   异常
+     * @throws ModbusInitException      异常
+     */
+    public static Number readHoldingRegister(int slaveId, int offset, int dataType)
+            throws ModbusTransportException, ErrorResponseException, ModbusInitException {
+        // 03 Holding Register类型数据读取
+        BaseLocator<Number> loc = BaseLocator.holdingRegister(slaveId, offset, dataType);
+        Number value = getMaster().getValue(loc);
+        return value;
+    }
+
+    /**
+     * 读取[04 Input Registers 3x]类型 模拟量数据
+     *
+     * @param slaveId  slaveId
+     * @param offset   位置
+     * @param dataType 数据类型,来自com.serotonin.modbus4j.code.DataType
+     * @return 返回结果
+     * @throws ModbusTransportException 异常
+     * @throws ErrorResponseException   异常
+     * @throws ModbusInitException      异常
+     */
+    public static Number readInputRegisters(int slaveId, int offset, int dataType)
+            throws ModbusTransportException, ErrorResponseException, ModbusInitException {
+        // 04 Input Registers类型数据读取
+        BaseLocator<Number> loc = BaseLocator.inputRegister(slaveId, offset, dataType);
+        Number value = getMaster().getValue(loc);
+        return value;
+    }
+
+    /**
+     * 批量读取使用方法
+     *
+     * @throws ModbusTransportException
+     * @throws ErrorResponseException
+     * @throws ModbusInitException
+     */
+    public static void batchRead() throws ModbusTransportException, ErrorResponseException, ModbusInitException {
+
+        BatchRead<Integer> batch = new BatchRead<Integer>();
+
+        batch.addLocator(0, BaseLocator.holdingRegister(1, 1, DataType.FOUR_BYTE_FLOAT));
+        batch.addLocator(1, BaseLocator.inputStatus(1, 0));
+
+        ModbusMaster master = getMaster();
+
+        batch.setContiguousRequests(false);
+        BatchResults<Integer> results = master.send(batch);
+        System.out.println(results.getValue(0));
+        System.out.println(results.getValue(1));
+    }
+
+    /**
+     * 测试
+     *
+     * @param args
+     */
+    public static void main(String[] args) {
+        try {
+            // 01测试
+            Boolean v011 = readCoilStatus(1, 0);
+            Boolean v012 = readCoilStatus(1, 1);
+            Boolean v013 = readCoilStatus(1, 6);
+            System.out.println("v011:" + v011);
+            System.out.println("v012:" + v012);
+            System.out.println("v013:" + v013);
+            // 02测试
+            Boolean v021 = readInputStatus(1, 0);
+            Boolean v022 = readInputStatus(1, 1);
+            Boolean v023 = readInputStatus(1, 2);
+            System.out.println("v021:" + v021);
+            System.out.println("v022:" + v022);
+            System.out.println("v023:" + v023);
+
+            // 03测试
+            Number v031 = readHoldingRegister(1, 1, DataType.FOUR_BYTE_FLOAT);// 注意,float
+            Number v032 = readHoldingRegister(1, 3, DataType.FOUR_BYTE_FLOAT);// 同上
+            System.out.println("v031:" + v031);
+            System.out.println("v032:" + v032);
+
+            // 04测试
+            Number v041 = readInputRegisters(1, 1, DataType.FOUR_BYTE_FLOAT);//
+            Number v042 = readInputRegisters(1, 3, DataType.FOUR_BYTE_FLOAT);//
+            System.out.println("v041:" + v041);
+            System.out.println("v042:" + v042);
+            // 批量读取
+            batchRead();
+
+        } catch (Exception e) {
+            e.printStackTrace();
+        }
+    }
+}

+ 44 - 0
src/main/java/com/jwk/spring/boot/test/RtuMasterTest.java

@@ -0,0 +1,44 @@
+package com.jwk.spring.boot.test;
+
+import com.jwk.spring.boot.constant.Constant;
+import com.jwk.spring.boot.modbus4j.ModbusRtuMaster;
+import gnu.io.SerialPort;
+import lombok.extern.slf4j.Slf4j;
+
+import java.util.Arrays;
+import java.util.Random;
+
+/**
+ * 模拟主站设备
+ *
+ * @author wusq
+ * @date 2021/1/3
+ */
+@Slf4j
+public class RtuMasterTest {
+
+    public static void main(String[] args) throws Exception {
+        createRtuMaster();
+    }
+
+    private static void createRtuMaster() throws Exception {
+        // 从站设备ID是1
+        int slaveId = 1;
+        ModbusRtuMaster rtuMaster = new ModbusRtuMaster("COM1", 9600
+                , SerialPort.DATABITS_8, SerialPort.STOPBITS_1, SerialPort.PARITY_NONE
+                , 0, 0);
+        rtuMaster.connect();
+        for (; ; ) {
+            try {
+                short[] shorts = rtuMaster
+                        .getModbusMasterUtil().readCoils( 0, 3, slaveId).getShortData();
+                System.out.println(Arrays.toString(shorts));
+                boolean b = rtuMaster.getModbusMasterUtil().writeCoil( 1, new Random().nextInt(100), slaveId);
+                Thread.sleep(2000);
+            } catch (Exception e) {
+                log.error("", e);
+                rtuMaster.reConnect();
+            }
+        }
+    }
+}

+ 106 - 0
src/main/java/com/jwk/spring/boot/test/RtuSlaveTest.java

@@ -0,0 +1,106 @@
+package com.jwk.spring.boot.test;
+
+import com.jwk.spring.boot.modbus4j.util.rtu.MyProcessImageListener;
+import com.jwk.spring.boot.modbus4j.util.rtu.SerialPortWrapperImpl;
+import com.serotonin.modbus4j.BasicProcessImage;
+import com.serotonin.modbus4j.ModbusFactory;
+import com.serotonin.modbus4j.ModbusSlaveSet;
+import com.serotonin.modbus4j.ProcessImage;
+import com.serotonin.modbus4j.exception.ModbusInitException;
+import gnu.io.SerialPort;
+
+import java.util.Random;
+
+/**
+ * 模拟从站设备
+ * @author wusq
+ * @date 2021/1/3
+ */
+public class RtuSlaveTest {
+
+    public static void main(String[] args) {
+        createRtuSlave();
+    }
+
+    public static void createRtuSlave(){
+        // 设置串口参数,串口是COM2,波特率是9600
+        SerialPortWrapperImpl wrapper = new SerialPortWrapperImpl("COM2", 9600,
+                SerialPort.DATABITS_8, SerialPort.STOPBITS_1, SerialPort.PARITY_NONE, 0, 0);
+
+        // Modbus工厂,可以创建RTU、TCP等不同类型的Master和Slave
+        ModbusFactory modbusFactory = new ModbusFactory();
+
+        final ModbusSlaveSet slave = modbusFactory.createRtuSlave(wrapper);
+
+        // 这玩意网上有人叫做过程影像区,其实就是寄存器
+        // 寄存器里可以设置线圈状态、离散输入状态、保持寄存器和输入寄存器
+        // 这里设置了从站设备ID是1
+        BasicProcessImage processImage = new BasicProcessImage(1);
+        processImage.setInvalidAddressValue(Short.MIN_VALUE);
+        slave.addProcessImage(processImage);
+
+        // 添加监听器,监听slave线圈状态和保持寄存器的写入
+        processImage.addListener(new MyProcessImageListener());
+
+        setCoil(processImage);
+        setInput(processImage);
+        setHoldingRegister(processImage);
+        setInputRegister(processImage);
+
+        // 开启线程启动从站设备
+        new Thread(new Runnable() {
+            @Override
+            public void run() {
+                try {
+                    slave.start();
+                }
+                catch (ModbusInitException e) {
+                    e.printStackTrace();
+                }
+            }
+        }).start();
+
+        /*new Timer().schedule(new TimerTask() {
+            @Override
+            public void run() {
+                // 间隔1秒修改从站设备1的保持寄存器数据
+                updateHoldingRegister(slave.getProcessImage(1));
+            }
+        }, 1000, 1000);*/
+    }
+
+    private static void setCoil(ProcessImage processImage){
+        // 模拟线圈状态
+        processImage.setCoil(0, true);
+        processImage.setCoil(1, false);
+        processImage.setCoil(2, true);
+    }
+
+    private static void setInput(ProcessImage processImage){
+        // 模拟离散输入状态
+        processImage.setInput(0, false);
+        processImage.setInput(1, true);
+        processImage.setInput(2, false);
+    }
+
+    private static void setHoldingRegister(ProcessImage processImage){
+        // 模拟保持寄存器的值
+        processImage.setHoldingRegister(0,(short) 11);
+        processImage.setHoldingRegister(1,(short) 22);
+        processImage.setHoldingRegister(2,(short) 33);
+    }
+
+    private static void updateHoldingRegister(ProcessImage processImage){
+        // 模拟修改保持寄存器的值
+        processImage.setHoldingRegister(0, (short) new Random().nextInt(100));
+        processImage.setHoldingRegister(1,(short) new Random().nextInt(100));
+        processImage.setHoldingRegister(2,(short) new Random().nextInt(100));
+    }
+
+    private static void setInputRegister(ProcessImage processImage){
+        // 模拟输入寄存器的值
+        processImage.setInputRegister(0,(short) 44);
+        processImage.setInputRegister(1,(short) 55);
+        processImage.setInputRegister(2,(short) 66);
+    }
+}

+ 17 - 0
src/main/java/com/jwk/spring/boot/test/Test.java

@@ -0,0 +1,17 @@
+package com.jwk.spring.boot.test;
+
+import lombok.extern.slf4j.Slf4j;
+
+/**
+ * @author JWK
+ * @version 1.0
+ * @date 2022/12/12 16:08
+ */
+@Slf4j
+public class Test {
+    public static void main(String[] args) {
+
+        System.out.println("test");
+        log.error("111");
+    }
+}

+ 2 - 0
src/main/resources/META-INF/additional-spring-configuration-metadata.json

@@ -0,0 +1,2 @@
+{
+}

+ 3 - 0
src/main/resources/META-INF/spring.factories

@@ -0,0 +1,3 @@
+# Auto Configure
+org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
+com.jwk.spring.boot.autoconfigure.ModbusAutoConfiguration

BIN
src/main/resources/lib/RXTXcomm.jar


BIN
src/main/resources/lib/jssc-2.8.0.jar


BIN
src/main/resources/lib/modbus4j-3.0.5.jar


BIN
src/main/resources/lib/rxtxParallel.dll


BIN
src/main/resources/lib/rxtxSerial.dll


+ 20 - 0
src/test/java/com/jwk/AppTest.java

@@ -0,0 +1,20 @@
+package com.jwk;
+
+import static org.junit.Assert.assertTrue;
+
+import org.junit.Test;
+
+/**
+ * Unit test for simple App.
+ */
+public class AppTest 
+{
+    /**
+     * Rigorous Test :-)
+     */
+    @Test
+    public void shouldAnswerWithTrue()
+    {
+        assertTrue( true );
+    }
+}

+ 2 - 0
target/classes/META-INF/additional-spring-configuration-metadata.json

@@ -0,0 +1,2 @@
+{
+}

+ 98 - 0
target/classes/META-INF/spring-configuration-metadata.json

@@ -0,0 +1,98 @@
+{
+  "groups": [
+    {
+      "name": "modbus",
+      "type": "com.jwk.spring.boot.autoconfigure.ModbusProperties",
+      "sourceType": "com.jwk.spring.boot.autoconfigure.ModbusProperties"
+    },
+    {
+      "name": "modbus.rtu-master",
+      "type": "com.jwk.spring.boot.autoconfigure.ModbusProperties$RtuMaster",
+      "sourceType": "com.jwk.spring.boot.autoconfigure.ModbusProperties"
+    },
+    {
+      "name": "modbus.tcp-master",
+      "type": "com.jwk.spring.boot.autoconfigure.ModbusProperties$TcpMaster",
+      "sourceType": "com.jwk.spring.boot.autoconfigure.ModbusProperties"
+    }
+  ],
+  "properties": [
+    {
+      "name": "modbus.rtu-master.baud-rate",
+      "type": "java.lang.Integer",
+      "description": "波特率",
+      "sourceType": "com.jwk.spring.boot.autoconfigure.ModbusProperties$RtuMaster",
+      "defaultValue": 9600
+    },
+    {
+      "name": "modbus.rtu-master.data-bits",
+      "type": "java.lang.Integer",
+      "description": "数据位的位数,RTU是8位,ASCII是7位",
+      "sourceType": "com.jwk.spring.boot.autoconfigure.ModbusProperties$RtuMaster",
+      "defaultValue": 8
+    },
+    {
+      "name": "modbus.rtu-master.flow-control-in",
+      "type": "java.lang.Integer",
+      "description": "硬件之间输入流应答控制",
+      "sourceType": "com.jwk.spring.boot.autoconfigure.ModbusProperties$RtuMaster",
+      "defaultValue": 0
+    },
+    {
+      "name": "modbus.rtu-master.flow-control-out",
+      "type": "java.lang.Integer",
+      "description": "硬件之间输出流应答控制",
+      "sourceType": "com.jwk.spring.boot.autoconfigure.ModbusProperties$RtuMaster",
+      "defaultValue": 0
+    },
+    {
+      "name": "modbus.rtu-master.open",
+      "type": "java.lang.Boolean",
+      "description": "是否打开串口",
+      "sourceType": "com.jwk.spring.boot.autoconfigure.ModbusProperties$RtuMaster",
+      "defaultValue": false
+    },
+    {
+      "name": "modbus.rtu-master.parity",
+      "type": "java.lang.Integer",
+      "description": "奇偶校验位,无校验是0,奇校验是1,偶校验是2",
+      "sourceType": "com.jwk.spring.boot.autoconfigure.ModbusProperties$RtuMaster",
+      "defaultValue": 0
+    },
+    {
+      "name": "modbus.rtu-master.port",
+      "type": "java.lang.String",
+      "description": "串口",
+      "sourceType": "com.jwk.spring.boot.autoconfigure.ModbusProperties$RtuMaster",
+      "defaultValue": "COM1"
+    },
+    {
+      "name": "modbus.rtu-master.stop-bits",
+      "type": "java.lang.Integer",
+      "description": "停止位的位数,如果无奇偶校验为2,有奇偶校验为1",
+      "sourceType": "com.jwk.spring.boot.autoconfigure.ModbusProperties$RtuMaster",
+      "defaultValue": 1
+    },
+    {
+      "name": "modbus.tcp-master.host",
+      "type": "java.lang.String",
+      "description": "ip",
+      "sourceType": "com.jwk.spring.boot.autoconfigure.ModbusProperties$TcpMaster",
+      "defaultValue": "localhost"
+    },
+    {
+      "name": "modbus.tcp-master.open",
+      "type": "java.lang.Boolean",
+      "description": "是否打开Tcp连接",
+      "sourceType": "com.jwk.spring.boot.autoconfigure.ModbusProperties$TcpMaster",
+      "defaultValue": false
+    },
+    {
+      "name": "modbus.tcp-master.port",
+      "type": "java.lang.Integer",
+      "description": "端口",
+      "sourceType": "com.jwk.spring.boot.autoconfigure.ModbusProperties$TcpMaster"
+    }
+  ],
+  "hints": []
+}

+ 3 - 0
target/classes/META-INF/spring.factories

@@ -0,0 +1,3 @@
+# Auto Configure
+org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
+com.jwk.spring.boot.autoconfigure.ModbusAutoConfiguration

BIN
target/classes/com/jwk/spring/boot/autoconfigure/ModbusAutoConfiguration.class


BIN
target/classes/com/jwk/spring/boot/autoconfigure/ModbusProperties$RtuMaster.class


BIN
target/classes/com/jwk/spring/boot/autoconfigure/ModbusProperties$TcpMaster.class


BIN
target/classes/com/jwk/spring/boot/autoconfigure/ModbusProperties.class


BIN
target/classes/com/jwk/spring/boot/autoconfigure/ModbusRtuMasterTemplate.class


BIN
target/classes/com/jwk/spring/boot/autoconfigure/ModbusTcpMasterTemplate.class


BIN
target/classes/com/jwk/spring/boot/constant/Constant$FUNCTION_CODE.class


BIN
target/classes/com/jwk/spring/boot/constant/Constant.class


BIN
target/classes/com/jwk/spring/boot/constant/DATA_TYPE_WRAPPER.class


BIN
target/classes/com/jwk/spring/boot/modbus4j/ModbusMasterUtil.class


BIN
target/classes/com/jwk/spring/boot/modbus4j/ModbusRtuMaster.class


BIN
target/classes/com/jwk/spring/boot/modbus4j/ModbusTcpMaster.class


BIN
target/classes/com/jwk/spring/boot/modbus4j/util/rtu/MyProcessImageListener.class


BIN
target/classes/com/jwk/spring/boot/modbus4j/util/rtu/SerialPortUtils.class


BIN
target/classes/com/jwk/spring/boot/modbus4j/util/rtu/SerialPortWrapperImpl.class


BIN
target/classes/com/jwk/spring/boot/test/ModbusTcpMasterUtil.class


BIN
target/classes/com/jwk/spring/boot/test/RtuMasterTest.class


BIN
target/classes/com/jwk/spring/boot/test/RtuSlaveTest$1.class


BIN
target/classes/com/jwk/spring/boot/test/RtuSlaveTest.class


BIN
target/classes/com/jwk/spring/boot/test/Test.class


+ 5 - 0
target/maven-archiver/pom.properties

@@ -0,0 +1,5 @@
+#Generated by Maven
+#Tue Dec 13 00:19:07 CST 2022
+version=1.0
+groupId=com.jwk
+artifactId=modbus-spring-boot-starter

+ 0 - 0
target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst


+ 16 - 0
target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst

@@ -0,0 +1,16 @@
+/Users/jwk/work/IdeaProjects/modbus-spring-boot-starter/src/main/java/com/jwk/spring/boot/modbus4j/util/rtu/MyProcessImageListener.java
+/Users/jwk/work/IdeaProjects/modbus-spring-boot-starter/src/main/java/com/jwk/spring/boot/test/RtuSlaveTest.java
+/Users/jwk/work/IdeaProjects/modbus-spring-boot-starter/src/main/java/com/jwk/spring/boot/modbus4j/ModbusMasterUtil.java
+/Users/jwk/work/IdeaProjects/modbus-spring-boot-starter/src/main/java/com/jwk/spring/boot/autoconfigure/ModbusProperties.java
+/Users/jwk/work/IdeaProjects/modbus-spring-boot-starter/src/main/java/com/jwk/spring/boot/autoconfigure/ModbusAutoConfiguration.java
+/Users/jwk/work/IdeaProjects/modbus-spring-boot-starter/src/main/java/com/jwk/spring/boot/autoconfigure/ModbusRtuMasterTemplate.java
+/Users/jwk/work/IdeaProjects/modbus-spring-boot-starter/src/main/java/com/jwk/spring/boot/test/ModbusTcpMasterUtil.java
+/Users/jwk/work/IdeaProjects/modbus-spring-boot-starter/src/main/java/com/jwk/spring/boot/test/Test.java
+/Users/jwk/work/IdeaProjects/modbus-spring-boot-starter/src/main/java/com/jwk/spring/boot/test/RtuMasterTest.java
+/Users/jwk/work/IdeaProjects/modbus-spring-boot-starter/src/main/java/com/jwk/spring/boot/modbus4j/util/rtu/SerialPortUtils.java
+/Users/jwk/work/IdeaProjects/modbus-spring-boot-starter/src/main/java/com/jwk/spring/boot/modbus4j/ModbusRtuMaster.java
+/Users/jwk/work/IdeaProjects/modbus-spring-boot-starter/src/main/java/com/jwk/spring/boot/modbus4j/ModbusTcpMaster.java
+/Users/jwk/work/IdeaProjects/modbus-spring-boot-starter/src/main/java/com/jwk/spring/boot/constant/Constant.java
+/Users/jwk/work/IdeaProjects/modbus-spring-boot-starter/src/main/java/com/jwk/spring/boot/modbus4j/util/rtu/SerialPortWrapperImpl.java
+/Users/jwk/work/IdeaProjects/modbus-spring-boot-starter/src/main/java/com/jwk/spring/boot/constant/DATA_TYPE_WRAPPER.java
+/Users/jwk/work/IdeaProjects/modbus-spring-boot-starter/src/main/java/com/jwk/spring/boot/autoconfigure/ModbusTcpMasterTemplate.java

+ 0 - 0
target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst


+ 1 - 0
target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst

@@ -0,0 +1 @@
+/Users/jwk/work/IdeaProjects/modbus-spring-boot-starter/src/test/java/com/jwk/AppTest.java

BIN
target/modbus-spring-boot-starter.jar


+ 6 - 0
target/modbus-spring-boot-starter/META-INF/MANIFEST.MF

@@ -0,0 +1,6 @@
+Manifest-Version: 1.0
+Archiver-Version: Plexus Archiver
+Built-By: jwk
+Created-By: Apache Maven 3.6.3
+Build-Jdk: 1.8.0_221
+

+ 2 - 0
target/modbus-spring-boot-starter/META-INF/additional-spring-configuration-metadata.json

@@ -0,0 +1,2 @@
+{
+}

+ 5 - 0
target/modbus-spring-boot-starter/META-INF/maven/com.jwk/modbus-spring-boot-starter/pom.properties

@@ -0,0 +1,5 @@
+#Generated by Maven
+#Tue Dec 13 00:19:07 CST 2022
+version=1.0
+groupId=com.jwk
+artifactId=modbus-spring-boot-starter

+ 146 - 0
target/modbus-spring-boot-starter/META-INF/maven/com.jwk/modbus-spring-boot-starter/pom.xml

@@ -0,0 +1,146 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+
+  <groupId>com.jwk</groupId>
+  <artifactId>modbus-spring-boot-starter</artifactId>
+  <version>1.0</version>
+
+  <name>modbus-spring-boot-starter</name>
+
+  <properties>
+    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    <maven.compiler.source>1.8</maven.compiler.source>
+    <maven.compiler.target>1.8</maven.compiler.target>
+  </properties>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.springframework.boot</groupId>
+      <artifactId>spring-boot-starter-web</artifactId>
+      <version>2.2.4.RELEASE</version>
+    </dependency>
+<!--    生成配置文件提示-->
+    <dependency>
+      <groupId>org.springframework.boot</groupId>
+      <artifactId>spring-boot-configuration-processor</artifactId>
+      <version>2.2.4.RELEASE</version>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.11</version>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.projectlombok</groupId>
+      <artifactId>lombok</artifactId>
+      <version>1.18.10</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+      <version>1.7.7</version>
+    </dependency>
+
+    <!-- springboot自带logback-->
+    <dependency>
+      <groupId>ch.qos.logback</groupId>
+      <artifactId>logback-core</artifactId>
+      <version>1.1.11</version>
+    </dependency>
+    <dependency>
+      <groupId>ch.qos.logback</groupId>
+      <artifactId>logback-classic</artifactId>
+      <version>1.1.11</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-lang3</artifactId>
+      <version>3.9</version>
+    </dependency>
+
+
+    <!--modbus4j start-->
+    <dependency>
+      <groupId>com.RXTXcomm</groupId>
+      <artifactId>RXTXcomm</artifactId>
+      <version>3.0.5</version>
+      <scope>system</scope>
+      <systemPath>${project.basedir}/src/main/resources/lib/RXTXcomm.jar</systemPath>
+    </dependency>
+    <dependency>
+      <groupId>com.serotonin</groupId>
+      <artifactId>modbus4j</artifactId>
+      <version>3.0.5</version>
+      <scope>system</scope>
+      <systemPath>${project.basedir}/src/main/resources/lib/modbus4j-3.0.5.jar</systemPath>
+    </dependency>
+    <dependency>
+      <groupId>org.scream3r</groupId>
+      <artifactId>jssc</artifactId>
+      <version>2.8.0</version>
+      <scope>system</scope>
+      <systemPath>${project.basedir}/src/main/resources/lib/jssc-2.8.0.jar</systemPath>
+    </dependency>
+    <!--modbus4j end-->
+  </dependencies>
+
+  <build>
+    <finalName>${project.artifactId}</finalName>
+    <extensions>
+      <extension>
+        <groupId>org.apache.maven.wagon</groupId>
+        <artifactId>wagon-ssh</artifactId>
+        <version>2.8</version>
+      </extension>
+    </extensions>
+    <plugins>
+      <plugin>
+        <groupId>org.springframework.boot</groupId>
+        <artifactId>spring-boot-maven-plugin</artifactId>
+        <configuration>
+          <includeSystemScope>true</includeSystemScope>
+        </configuration>
+      </plugin>
+      <!-- 跳过单元测试 -->
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <skipTests>true</skipTests>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+  <repositories>
+    <repository>
+      <id>public</id>
+      <name>aliyun nexus</name>
+      <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
+      <releases>
+        <enabled>true</enabled>
+      </releases>
+    </repository>
+  </repositories>
+  <pluginRepositories>
+    <pluginRepository>
+      <id>public</id>
+      <name>aliyun nexus</name>
+      <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
+      <releases>
+        <enabled>true</enabled>
+      </releases>
+      <snapshots>
+        <enabled>false</enabled>
+      </snapshots>
+    </pluginRepository>
+  </pluginRepositories>
+</project>

+ 98 - 0
target/modbus-spring-boot-starter/META-INF/spring-configuration-metadata.json

@@ -0,0 +1,98 @@
+{
+  "groups": [
+    {
+      "name": "modbus",
+      "type": "com.jwk.spring.boot.autoconfigure.ModbusProperties",
+      "sourceType": "com.jwk.spring.boot.autoconfigure.ModbusProperties"
+    },
+    {
+      "name": "modbus.rtu-master",
+      "type": "com.jwk.spring.boot.autoconfigure.ModbusProperties$RtuMaster",
+      "sourceType": "com.jwk.spring.boot.autoconfigure.ModbusProperties"
+    },
+    {
+      "name": "modbus.tcp-master",
+      "type": "com.jwk.spring.boot.autoconfigure.ModbusProperties$TcpMaster",
+      "sourceType": "com.jwk.spring.boot.autoconfigure.ModbusProperties"
+    }
+  ],
+  "properties": [
+    {
+      "name": "modbus.rtu-master.baud-rate",
+      "type": "java.lang.Integer",
+      "description": "波特率",
+      "sourceType": "com.jwk.spring.boot.autoconfigure.ModbusProperties$RtuMaster",
+      "defaultValue": 9600
+    },
+    {
+      "name": "modbus.rtu-master.data-bits",
+      "type": "java.lang.Integer",
+      "description": "数据位的位数,RTU是8位,ASCII是7位",
+      "sourceType": "com.jwk.spring.boot.autoconfigure.ModbusProperties$RtuMaster",
+      "defaultValue": 8
+    },
+    {
+      "name": "modbus.rtu-master.flow-control-in",
+      "type": "java.lang.Integer",
+      "description": "硬件之间输入流应答控制",
+      "sourceType": "com.jwk.spring.boot.autoconfigure.ModbusProperties$RtuMaster",
+      "defaultValue": 0
+    },
+    {
+      "name": "modbus.rtu-master.flow-control-out",
+      "type": "java.lang.Integer",
+      "description": "硬件之间输出流应答控制",
+      "sourceType": "com.jwk.spring.boot.autoconfigure.ModbusProperties$RtuMaster",
+      "defaultValue": 0
+    },
+    {
+      "name": "modbus.rtu-master.open",
+      "type": "java.lang.Boolean",
+      "description": "是否打开串口",
+      "sourceType": "com.jwk.spring.boot.autoconfigure.ModbusProperties$RtuMaster",
+      "defaultValue": false
+    },
+    {
+      "name": "modbus.rtu-master.parity",
+      "type": "java.lang.Integer",
+      "description": "奇偶校验位,无校验是0,奇校验是1,偶校验是2",
+      "sourceType": "com.jwk.spring.boot.autoconfigure.ModbusProperties$RtuMaster",
+      "defaultValue": 0
+    },
+    {
+      "name": "modbus.rtu-master.port",
+      "type": "java.lang.String",
+      "description": "串口",
+      "sourceType": "com.jwk.spring.boot.autoconfigure.ModbusProperties$RtuMaster",
+      "defaultValue": "COM1"
+    },
+    {
+      "name": "modbus.rtu-master.stop-bits",
+      "type": "java.lang.Integer",
+      "description": "停止位的位数,如果无奇偶校验为2,有奇偶校验为1",
+      "sourceType": "com.jwk.spring.boot.autoconfigure.ModbusProperties$RtuMaster",
+      "defaultValue": 1
+    },
+    {
+      "name": "modbus.tcp-master.host",
+      "type": "java.lang.String",
+      "description": "ip",
+      "sourceType": "com.jwk.spring.boot.autoconfigure.ModbusProperties$TcpMaster",
+      "defaultValue": "localhost"
+    },
+    {
+      "name": "modbus.tcp-master.open",
+      "type": "java.lang.Boolean",
+      "description": "是否打开Tcp连接",
+      "sourceType": "com.jwk.spring.boot.autoconfigure.ModbusProperties$TcpMaster",
+      "defaultValue": false
+    },
+    {
+      "name": "modbus.tcp-master.port",
+      "type": "java.lang.Integer",
+      "description": "端口",
+      "sourceType": "com.jwk.spring.boot.autoconfigure.ModbusProperties$TcpMaster"
+    }
+  ],
+  "hints": []
+}

+ 3 - 0
target/modbus-spring-boot-starter/META-INF/spring.factories

@@ -0,0 +1,3 @@
+# Auto Configure
+org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
+com.jwk.spring.boot.autoconfigure.ModbusAutoConfiguration

BIN
target/modbus-spring-boot-starter/com/jwk/spring/boot/autoconfigure/ModbusAutoConfiguration.class


BIN
target/modbus-spring-boot-starter/com/jwk/spring/boot/autoconfigure/ModbusProperties$RtuMaster.class


BIN
target/modbus-spring-boot-starter/com/jwk/spring/boot/autoconfigure/ModbusProperties$TcpMaster.class


BIN
target/modbus-spring-boot-starter/com/jwk/spring/boot/autoconfigure/ModbusProperties.class


BIN
target/modbus-spring-boot-starter/com/jwk/spring/boot/autoconfigure/ModbusRtuMasterTemplate.class


BIN
target/modbus-spring-boot-starter/com/jwk/spring/boot/autoconfigure/ModbusTcpMasterTemplate.class


BIN
target/modbus-spring-boot-starter/com/jwk/spring/boot/constant/Constant$FUNCTION_CODE.class


BIN
target/modbus-spring-boot-starter/com/jwk/spring/boot/constant/Constant.class


BIN
target/modbus-spring-boot-starter/com/jwk/spring/boot/constant/DATA_TYPE_WRAPPER.class


BIN
target/modbus-spring-boot-starter/com/jwk/spring/boot/modbus4j/ModbusMasterUtil.class


BIN
target/modbus-spring-boot-starter/com/jwk/spring/boot/modbus4j/ModbusRtuMaster.class


BIN
target/modbus-spring-boot-starter/com/jwk/spring/boot/modbus4j/ModbusTcpMaster.class


BIN
target/modbus-spring-boot-starter/com/jwk/spring/boot/modbus4j/util/rtu/MyProcessImageListener.class


BIN
target/modbus-spring-boot-starter/com/jwk/spring/boot/modbus4j/util/rtu/SerialPortUtils.class


BIN
target/modbus-spring-boot-starter/com/jwk/spring/boot/modbus4j/util/rtu/SerialPortWrapperImpl.class


BIN
target/modbus-spring-boot-starter/com/jwk/spring/boot/test/ModbusTcpMasterUtil.class


BIN
target/modbus-spring-boot-starter/com/jwk/spring/boot/test/RtuMasterTest.class


BIN
target/modbus-spring-boot-starter/com/jwk/spring/boot/test/RtuSlaveTest$1.class


BIN
target/modbus-spring-boot-starter/com/jwk/spring/boot/test/RtuSlaveTest.class


BIN
target/modbus-spring-boot-starter/com/jwk/spring/boot/test/Test.class


BIN
target/modbus-spring-boot-starter/lib/RXTXcomm.jar


BIN
target/modbus-spring-boot-starter/lib/jssc-2.8.0.jar


BIN
target/modbus-spring-boot-starter/lib/modbus4j-3.0.5.jar


BIN
target/modbus-spring-boot-starter/lib/rxtxParallel.dll


BIN
target/modbus-spring-boot-starter/lib/rxtxSerial.dll


BIN
target/test-classes/com/jwk/AppTest.class