启动springboot报错,大神们帮忙看看是咋回事

ERROR      : Application run failed

Caused by: Attribute 'name' in annotation [org.springframework.web.bind.annotation.GetMapping] is declared as an @AliasFor nonexistent attribute 'name' in annotation [org.springframework.web.bind.annotation.RequestMapping].

@RestController
public class IndexController {

    @GetMapping("/hello")
    public String hello(){
        return "hello,world";
    }
}

好像是你springboot版本的问题