创建一个springboot项目

  • Post author:
  • Post category:其他


1.创建一个项目


选择maven,直接next

下一步之后,更改你的项目名称,位置和包名,点finish完成;

就会进入这个界面,把src 删了,之后我们要new 一个Module;

2.新建一个模块

就会进入这个界面,选择Spring Initializr,直接Next;

Next之后,你可以根据自己的需求勾选你需要的依赖

3.导入依赖




<!–




导入




springboot




版本和框架依赖






–>




<


parent


>

<


groupId


>org.springframework.boot</


groupId


>

<


artifactId


>spring-boot-starter-parent</


artifactId


>

<


version


>2.5.1</


version


>



<


relativePath


></


relativePath


>



</


parent


>




<!–




导入动态




web




场景启动器






–>




<


dependencies


>

<


dependency


>

<


groupId


>org.springframework.boot</


groupId


>

<


artifactId


>spring-boot-starter-web</


artifactId


>

</


dependency


>

</


dependencies


>




<!–




添加




maven




插件,项目的打包工具,打成




jar




包,否则在打包运行时报错






–>




<


build


>

<


plugins


>

<


plugin


>

<


groupId


>org.springframework.boot</


groupId


>

<


artifactId


>spring-boot-maven-plugin</


artifactId


>

</


plugin


>

</


plugins


>

</


build


>



如图:


这样就配置好了

4.创建Springboot启动类

创建包com.example,在包下创建启动类

创建启动类

5.创建controller

创建com.example.controller包,在包下创建controller类

@Controller
public class HelloController {
    /**
     * hello 方法 对应的请求url http://localhost:8080/hello
     *
     * @return
     */
    @RequestMapping("hello")
    //返回json
    @ResponseBody
    public String hello() {
        return "hello spring boot";
    }
}运行

6.访问controller

博主的一个学习笔记,如果你看到这儿,谢谢你的阅读!!!



版权声明:本文为weixin_48635661原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。