Spring Boot doc已过期

时间:2017-11-29 13:55:18

标签: spring-boot

https://spring.io/guides/gs/spring-boot/

据我所知,这已经过时了。

github repo并不存在所以我使用了之前提到的initilizr并将其导入intellij。

然后我尝试创建一个新的java类,就像教程的第一部分在https://spring.io/guides/gs/spring-boot/#_create_a_simple_web_application

中所说的那样

但直接蝙蝠,提供的代码中的导入失败:

package hello;

import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.bind.annotation.RequestMapping;

@RestController
public class HelloController {

    @RequestMapping("/")
    public String index() {
        return "Greetings from Spring Boot!";
    }

}

我用谷歌搜索了一下(但我可能误解了。)RestController被弃用而不是Controller

那么RequestMapping呢?

如何设置基本的测试休息服务。

PS:在initilizr(https://start.spring.io/)中,我选择了Spring Boot 2.0.0 M6

1 个答案:

答案 0 :(得分:0)

在您的pom.xml文件中,将第一行<artifactId>更改为:

<artifactId>spring-boot</artifactId>

它可能有所不同(对我来说是<artifactId>spring-boot-starter-parent</artifactId>)。

这样你就可以进口。