Intellij IDEA创建第一个Spring boot项目Hello World

1.点击File->new->projiect,出现下面的窗口:

 

 Intellij IDEA创建第一个Spring boot项目Hello World_第1张图片

 

Intellij IDEA创建第一个Spring boot项目Hello World_第2张图片

这两个选项我们暂时不做修改,在之后我们自己的项目里在进行修改。

Intellij IDEA创建第一个Spring boot项目Hello World_第3张图片

选中web,导入web依赖,一路next,等待Intellij IDEA自动导入依赖,形成的目录结构如下所示

Intellij IDEA创建第一个Spring boot项目Hello World_第4张图片

 

        需要注意的文件就是这三个文件,从上往下依次是启动项,配置文件,依赖文件,启动Spring boot项目就是通过运行启动项,访问的其他文件也必须是在启动项的同级或同级子目录下。

        右击启动项,新建Java class

Intellij IDEA创建第一个Spring boot项目Hello World_第5张图片

在新生成的类里写入:

@RestController
public class HelloWolrdContronller {
    @RequestMapping("/hello")
    public String helloworld(){
        return "Hello World!";
    }
}

右击启动项,选中run

Intellij IDEA创建第一个Spring boot项目Hello World_第6张图片

Intellij IDEA创建第一个Spring boot项目Hello World_第7张图片

      稍等片刻,可以看到Tomcat已经在8080端口启动,并且DemoApplication已经成功运行,你可能疑问我没有加入Tomcat的jar包啊,这个是Spring boot内嵌的,然后在浏览器导航栏输入http://localhost:8080/hello,显示以下界面,就恭喜你已经成功运行了自己的第一个Spring boot项目

Intellij IDEA创建第一个Spring boot项目Hello World_第8张图片

 

 

你可能感兴趣的:(Intellij IDEA创建第一个Spring boot项目Hello World)