Build a springboot project under IntelliJ IDEA

Organize the construction of the springboot project today



Next step


Next step


Next step


Newly created directory structure


Create a new Controller to test

@RestController
public class MainController {
    @RequestMapping("/")
    public String index(){
        return "hello spring boot!";
    }
}

then run


result


Building a spring boot project is so easy.

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=325856042&siteId=291194637