Relative Content

Tag Archive for htmlspring-boottemplatescontroller

I cannot see the index.html page in spring boot

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. html spring-boot templates controller New […]