ModbusProperties.java 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. package com.jwk.spring.boot.autoconfigure;
  2. import lombok.Data;
  3. import org.springframework.boot.context.properties.ConfigurationProperties;
  4. /**
  5. * @author JWK
  6. * @version 1.0
  7. * @date 2022/12/2 15:40
  8. */
  9. @Data
  10. @ConfigurationProperties(prefix = ModbusProperties.DEMO_PREFIX)
  11. public class ModbusProperties {
  12. public static final String DEMO_PREFIX = "modbus";
  13. /**
  14. * 注入方式:
  15. * '@Autowired(required = true)'
  16. * private ModbusRtuMasterTemplate modbusRtuMasterTemplateFirst;
  17. * 没有open=true的bean千万不要注入,@Autowired(required = false)也不行.
  18. */
  19. private RtuMasterOrder rtuMaster;
  20. /**
  21. * 注入方式:
  22. * '@Autowired(required = true)'
  23. * private ModbusTcpMasterTemplate modbusTcpMasterTemplateFirst;
  24. * 没有open=true的bean千万不要注入,@Autowired(required = false)也不行.
  25. */
  26. private TcpMasterOrder tcpMaster;
  27. @Data
  28. public static class RtuMasterOrder {
  29. private RtuMaster first;
  30. private RtuMaster second;
  31. private RtuMaster third;
  32. private RtuMaster fourth;
  33. private RtuMaster fifth;
  34. }
  35. @Data
  36. public static class TcpMasterOrder {
  37. private TcpMaster first;
  38. private TcpMaster second;
  39. private TcpMaster third;
  40. private TcpMaster fourth;
  41. private TcpMaster fifth;
  42. }
  43. @Data
  44. public static class RtuMaster {
  45. /**
  46. * 开启串口
  47. */
  48. private boolean open = false;
  49. /**
  50. * 串口
  51. */
  52. private String port = "COM1";
  53. /**
  54. * 波特率
  55. */
  56. private Integer baudRate = 9600;
  57. /**
  58. * 数据位的位数,RTU是8位,ASCII是7位
  59. */
  60. private Integer dataBits = 8;
  61. /**
  62. * 停止位的位数,如果无奇偶校验为2,有奇偶校验为1
  63. */
  64. private Integer stopBits = 1;
  65. /**
  66. * 奇偶校验位,无校验是0,奇校验是1,偶校验是2
  67. */
  68. private Integer parity = 0;
  69. /**
  70. * 硬件之间输入流应答控制
  71. */
  72. private Integer flowControlIn = 0;
  73. /**
  74. * 硬件之间输出流应答控制
  75. */
  76. private Integer flowControlOut = 0;
  77. }
  78. @Data
  79. public static class TcpMaster {
  80. /**
  81. * 开启TCP连接
  82. */
  83. private boolean open = false;
  84. /**
  85. * ip地址
  86. */
  87. private String host = "127.0.0.1";
  88. /**
  89. * 端口
  90. */
  91. private Integer port = 502;
  92. }
  93. }