I am attaching the project structure.When I run as Spring boot application it shows white label errror. Since controller is in base package there is no need of component scan too.Can some one say whats the mistake.
Controller:
@Controller
public class HelloWorldController
{
@RequestMapping("/greeting")
public String greeting()
{
return "Hello World";
}
}