1

springboot项目搭建

快速搭建:使用start.spring.io生成一个springboot基本项目

maven构建:使用maven构建一个springboot基本项目

一、创建Maven项目

二、设置POM文件

1 配置 Springboot 依赖管理

    1.1设置父工程为spring-boot-starter-parent

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.5.7.RELEASE</version>
    <relativePath/> <!-- lookup parent from repository -->
</parent>

    1.2不设置父工程

<dependencyManagement>
    <dependencies>
        <dependency>
            <!-- Import dependency management from Spring Boot -->
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-dependencies</artifactId>
            <version>1.5.6.RELEASE</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

2 导入SpringBoot依赖

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter</artifactId>
</dependency>

3 配置构建依赖

<build>
    <plugins>
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
        </plugin>
    </plugins>
</build>

三、创建项目结构

|- src
  |- main
    |- java
      |-域名反写
        |-项目名
    |- resources
        

四、创建springboot启动类

路径:src.main.java.域名反写.项目名(PS:必须在此包下创建启动类,不然会报错)

@SpringBootApplication
public class MySpringBootApplication {

    public static void main(String[] args) {
        SpringApplication.run(MySpringBootApplication.class, args);
    }
}

五、创建springboot配置文件

路径:src.main.resources

创建application.properties(或application.yml springboot支持ymal格式)
    

参考 xixicat SpringBoot配置属性之Server


roylion
204 声望25 粉丝

读书破万卷