package crv_coders.ainews.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
@Controller
public class ViewController {
@GetMapping("/")
public String home() {
return "index";
}
}
localhost8080
project structure
When i go to localhost8080 i don t see the HTML page.
The only solve I got was to move the HTML page to the statics folder.
New contributor
MihaiPMC is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.