springboot跳转页面


项目结构

@Controller
public class Jump {
    @RequestMapping("hah")
    public String jump (){
        System.out.println("hhh");
        return "index";
    }
}

 html页面放到templates目录下面

pom中必须引入 这个依赖才可以跳转 否则不会跳转!!!


                           org.springframework.boot
                           spring-boot-starter-thymeleaf