The content and destination of these messages depends on who sent philippines whatsapp number the incoming message and what they wrote: attributes that are part of the HTTP request. Read on to learn how to build this application using Java and Spring Boot Building the application Spring Boot is the most popular framework for building web applications in Java. I usually start new projects with Spring Initializr. If you want to follow the coding process, use this link which defines the same options I used. Otherwise, you can find the finished project on GitHub . Download, unzip and open the generated project in your IDE.

There will be a single class in src/main/java , in the package com.example.smsgroupbroadcast, called SmsGroupBroadcastApplication. You won't need to modify this class, but it contains a method main you can use to run the application. In the same package, create a new class called SmsHandler, in a new file called SmsHandler.java. To keep things from getting too complicated, we'll put all of our code in this class. When finished, it will be about 100 lines long. Start with the code that should be executed at startup: Java Copy the code @RestController public class SmsHandler { private final Set<String> groupPhoneNumbers; public SmsHandler() { groupPhoneNumbers = Set.