Skip to content

Latest commit

 

History

History
34 lines (22 loc) · 1.15 KB

README.md

File metadata and controls

34 lines (22 loc) · 1.15 KB

Setup REST and MQTT

  • Otherwise, take care to import the project as a Gradle Project
  • If required, trust the project and accept the Gradle auto-import
  • Wait until the Gradle indexing process ends (it may take a few seconds)

REST

  • Run StartServer.java located in: REST_MQTT_example/src/main/java/REST/
    • Don't worry about the red INFO console prints
  • Use a REST Client application (i.e., Advanced REST Client) to test if the server works correctly
  • For example you can run the following request:

MQTT

  • Dowload and install the Mosquitto broker from here: https://mosquitto.org/download/

  • Run the Mosquitto broker:

    • MacOS
      • brew services start mosquitto
      • mosquitto_sub -h localhost -v -t ‘#’ (Instead ‘#’ specify the topics of interest)
    • Windows
      • Run the file mosquitto.exe
  • Run SubExample.java and PubExample.java located in REST_MQTT_example/src/main/java/MQTT/