I am new to Spring Framework. Trying to make a Java based Spring MVC project. Here is my main application class
@SpringBootApplication
@ComponentScan
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}
@Controller
public class HelloController {
@RequestMapping("/")
public String hello(){
return "hello";
}
}
When I run the project I get the error
There was an unexpected error (type=Not Found, status=404).
No message available
Why Spring can not display JSP files?