项目结构

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

 

 html页面放到templates目录下面

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

<dependency>
                           <groupId>org.springframework.boot</groupId>
                           <artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>