I have created demo Spring Boot project and implemented Restful services as shown here
@RestController
public class GreetingsController {
@RequestMappin
This can help someone as it was in my case.
Make sure the package name of the controller is the derived (or child) package of your Spring main method package.
For example:
If the main method package is com.company.demo.example then the controller package should be like com.company.demo.example.controller (if you specify something like com.company.demo.controller it won't work!).