欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

springboot day01

程序员文章站 2022-06-08 13:45:05
...

springboot简介

SpringBoot是由Pivotal团队在2013年开始研发、2014年4月发布第一个版本的全新开源的轻量级框架。它基于Spring4.0设计,不仅继承了Spring框架原有的优秀特性,而且还通过简化配置来进一步简化了Spring应用的整个搭建和开发过程。另外SpringBoot通过集成大量的框架使得依赖包的版本冲突,以及引用的不稳定性等问题得到了很好的解决。

springboot入门

  1. 创建一个springboot web项目,这里用的idea创建

  2. 这里可以看到用idea创建的已经默认创建了起步依赖,其中热部署是我手动导入的(因为后面用到热部署的测试)

    <?xml version="1.0" encoding="UTF-8"?>
    <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
        <modelVersion>4.0.0</modelVersion>
        <parent>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-parent</artifactId>
            <version>2.2.1.RELEASE</version>
            <relativePath/> <!-- lookup parent from repository -->
        </parent>
        <groupId>com.example</groupId>
        <artifactId>springboot</artifactId>
        <version>0.0.1-SNAPSHOT</version>
        <name>springboot</name>
        <description>Demo project for Spring Boot</description>
    
        <properties>
            <java.version>1.8</java.version>
        </properties>
    
        <dependencies>
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-web</artifactId>
            </dependency>
    
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-test</artifactId>
                <scope>test</scope>
                <exclusions>
                    <exclusion>
                        <groupId>org.junit.vintage</groupId>
                        <artifactId>junit-vintage-engine</artifactId>
                    </exclusion>
                </exclusions>
            </dependency>
            <!-- 热部署-->
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-devtools</artifactId>
            </dependency>
            <!--@ConfigurationProperties的执行器配置(不配置也行 配置好处是有提示)-->
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-configuration-processor</artifactId>
                <optional>true</optional>
            </dependency>
        </dependencies>
    
        <build>
            <plugins>
                <plugin>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-maven-plugin</artifactId>
                </plugin>
            </plugins>
        </build>
    
    </project>
    
    
  3. 默认创建的启动类 SpringbootApplication

    package com.example.springboot;
    
    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    
    @SpringBootApplication
    public class SpringbootApplication {
    
        public static void main(String[] args) {
            SpringApplication.run(SpringbootApplication.class, args);
        }
    
    }
    
    

    启动后可以看到springboot项目已经启动成功了springboot day01
    这里的8081端口是我更改后的 在后面的配置中会讲到

  4. 配置controller测试

    package com.example.springboot.controller;
    
    import org.springframework.web.bind.annotation.RequestMapping;
    import org.springframework.web.bind.annotation.RestController;
    @RestController
    public class TestContorller {
        @RequestMapping("test")
        public String test() {
            return "SpringBoot 你好";
        }
    }
    
    

    这里我使用的是 @RestController注解(因为可以省略下面@ResponseBody)
    在页面*问则可以看到有输出springboot day01

    springboot热部署配置

    1. 首先在pom中引入热部署的起步依赖

    2. <!-- 热部署-->
              <dependency>
                  <groupId>org.springframework.boot</groupId>
                  <artifactId>spring-boot-devtools</artifactId>
              </dependency>
      
      • idea的话还需要自动编译的两个配置:springboot day01
      • 快捷键 ctrl+shift+alt+/,选择Registry 勾上 Compiler autoMake allow when app running则可以springboot day01
    3. 这里就不赘述了直接修改controller内容测试即可

    自定义配置application.yml

    1. idea默认的是application.properties ,但是看了很多大佬帖子 不太建议用这个方式,以下我使用yml方式

    2. 自定义配置application.yml的目的是:修改springboot默认配置好的东西

    3. server:
        port: 8081
      

      这里就先配置端口,后面会配置其他

    4. 运行测试springboot day01
      这里可以看到默认的8080端口已经改成8081端口了