idea开发之springboot环境搭建

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了idea开发之springboot环境搭建相关的知识,希望对你有一定的参考价值。

1.新建maven工程

2.在pom文件中引入SpringBoot相关依赖

<parent>

    <groupId>org.springframework.boot</groupId>

    <artifactId>spring-boot-starter-parent</artifactId>

   <version>1.5.1.RELEASE</version>

</parent>

<dependencies>

<dependency>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-starter-web</artifactId>

</dependency>

</dependencies>


3.新建启动类

    

    package com.example.demo;

    import org.springframework.boot.SpringApplication;

    import org.springframework.boot.autoconfigure.SpringBootApplication;


    @SpringBootApplication

    public class DemoApplication {

        public static void main(String[] args) {

            SpringApplication.run(DemoApplication.class, args);

    }

}


也可以用spring intilizer来生成springboot的模板

     


以上是关于idea开发之springboot环境搭建的主要内容,如果未能解决你的问题,请参考以下文章

从零开始搭建SpringBoot项目——开发环境搭建(图文详细)

手把手教你 Springboot 开发环境搭建和项目启动

性能工具之 Gatling 开发环境搭建

使用IDEA写Python之pytest环境搭建及第一个程序编写

开发搭建环境之springboot配置logback日志管理

《算法》第四版 IDEA 运行环境的搭建