其他分享
首页 > 其他分享> > SprintBoot简单入门

SprintBoot简单入门

作者:互联网

1、什么是SpringBoot

SpringBoot是基于Spring的基础上提供了一套全新的框架,其目的是为了在开发时简化Spring的相关配置及开发过程。在SpringBoot未出来之前,准备搭建一个Spring的开发环境需要配置一堆的XML文件,而SpringBoot就是去除了大量的XML配置文件,简化了复杂的依赖管理。

Spring Boot集成了大量常用的第三方库配置,Spring Boot 应用中这些第三方库几乎可以是零配置的开箱即用(out-of-the-box),大部分的Spring Boot应用都只需要非常少量的配置代码(基于Java 的配置),开发者能够更加专注于业务逻辑。

2、SpringBoot特征

3、快速搭建SpringBoot

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.5.3</version>
</parent>

因为是要开发一个web项目,因此需要引入web依赖。

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
</dependency>
@SpringBootApplication
public class Application {
    public static void main(String[] args) {
        SpringApplication.run(Application.class,args);
    }
}
@RestController
@RequestMapping(path = "/v1/index")
public class IndexController {
    @GetMapping(path = "")
    public String index(){
        return "Hello Spring Boot!";
    }
}
Connected to the target VM, address: '127.0.0.1:54766', transport: 'socket'

  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::                (v2.5.3)

2021-08-04 23:16:55.694  INFO 15528 --- [           main] com.tenghu.sb.Application                : Starting Application using Java 1.8.0_301 on Arvin with PID 15528 (E:\project\java\spring-boot-study\target\classes started by admin in E:\project\java\spring-boot-study)
2021-08-04 23:16:55.696  INFO 15528 --- [           main] com.tenghu.sb.Application                : No active profile set, falling back to default profiles: default
2021-08-04 23:16:56.231  INFO 15528 --- [           main] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat initialized with port(s): 8080 (http)
2021-08-04 23:16:56.237  INFO 15528 --- [           main] o.apache.catalina.core.StandardService   : Starting service [Tomcat]
2021-08-04 23:16:56.237  INFO 15528 --- [           main] org.apache.catalina.core.StandardEngine  : Starting Servlet engine: [Apache Tomcat/9.0.50]
2021-08-04 23:16:56.292  INFO 15528 --- [           main] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring embedded WebApplicationContext
2021-08-04 23:16:56.292  INFO 15528 --- [           main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 567 ms
2021-08-04 23:16:56.503  INFO 15528 --- [           main] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat started on port(s): 8080 (http) with context path ''
2021-08-04 23:16:56.509  INFO 15528 --- [           main] com.tenghu.sb.Application                : Started Application in 1.065 seconds (JVM running for 1.607)
2021-08-04 23:17:07.919  INFO 15528 --- [nio-8080-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring DispatcherServlet 'dispatcherServlet'
2021-08-04 23:17:07.919  INFO 15528 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet        : Initializing Servlet 'dispatcherServlet'
2021-08-04 23:17:07.920  INFO 15528 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet        : Completed initialization in 1 ms

看到这个结果,表示SpringBoot项目就已经启动成功了,现在使用浏览器访问路径http://localhost:8080/v1/index就可以看到浏览器输出结果:Hello Spring Boot!

以上是手动建立一个空的maven项目,手动添加依赖的方式创建一个简单的spring boot项目,另外还有两种方式可以快速生成spring boot项目:

4、SpringBoot配置文件

从上面的简单例子已经可以看出,我们没有将项目打包成war文件发布到Tomcat容器,就可以启动项目,并且从日志上看出端口默认就是8080,从上面特性已经指出SpringBoot内嵌了Tomcat容器,并且设置了必须的一些默认值,那么如果我们想替换相关默认值,就可以使用自定义的配置文件来覆盖默认配置。

SpringBoot提供了两种配置文件类型:propertiesyml(而yml也可以写成yaml)。默认配置文件名称为:application,放在resources目录下。这两种配置文件在同一级的优先级为:properties>yml>yaml

比如把默认端口改为8088,上面访问路径为http://localhost:8080/v1/index,按照之前的习惯,通常是主机后面会跟项目名,也可以通过配置文件配置。

使用yaml方式配置:

server:
  servlet:
    context-path: /spring-boot
  port: 8088

注意:yaml的配置方式:号后面必须有空格。

简单介绍下yaml的基本语法:

yaml的数据格式:

person:
  name: lisi

# 行内写法
person: {name: lisi}
names:
  - zhangsan
  - lisi

# 行内写法
names: [zhangsan,lisi]
msg1: `hello \n world` #单引号忽略转义字符
msg2: "hello \n world" #双引识别转义字符

yaml参数引用:
有时候在配置一个参数,想被多个地方引用,可以这样配置:

name: zhangsan
person:
  name: ${name} #引用上面定义的name的值

使用properties配置:

server.servlet.context-path=/spring-boot
server.port=8088

注意:配置context-path必须是/开头

启动项目从日志输出:

Tomcat started on port(s): 8088 (http) with context path '/spring-boot'

这个时候我们的访问路径就是:http://localhost:8088/spring-boot/v1/index

5、读取配置内容

在实际开发时,有时候需要做一些初始化的自定义配置,那么怎么在代码里面获取到配置文件的自定义配置,比如自定义配置name: zhangsan。读取配置内容有如下三种方式:

@Value("${name:lisi}")
private String name;

@GetMapping(path = "")
public String index(){
    return String.format("Hello %s Spring Boot!",name);
}

访问结果:Hello zhangsan Spring Boot!,使用@Value注解就可以获取配置文件的自定义配置,:后面表示默认值,如果配置文件没有配置,则取默认值。

@Autowired
private Environment environment;

System.out.println(String.format("使用Environment获取配置name:%s",environment.getProperty("name")));

输出结果:使用Environment获取配置name:zhangsan

@Component
@ConfigurationProperties(prefix = "user")
@Data
public class User {
    private String name;
    private int age;
    private List<String> address;
    
    @Override
    public String toString() {
        return "User{" +
                "name='" + name + '\'' +
                ", age=" + age +
                ", address=" + address +
                '}';
    }
}

必须使用@Component@ConfigurationProperties注解,@Data是使用了lombok插件。如果需要使用lombok,需要在IDEA安装Lombok插件,引入lombok依赖

<dependency>
    <groupId>org.projectlombok</groupId>
    <artifactId>lombok</artifactId>
</dependency>

配置文件如下配置:

user:
  name: zhangsan
  age: 12
  address:
   - sichuang
   - hunan

controller中使用

@Autowired
private User user;

System.out.println(user.toString());

输出结果:User{name='admin', age=12, address=[sichuan, hunan]}

6、使用Profile多环境切换

在实际开发场景中,我们一般有开发、测试、生产环境,每个环节的某些配置会不一样,那么怎么来解决不同环境配置的问题,下面详细介绍使用Profile多环境的切换。

profile多环境配置方式:

profile激活多环境方式:

多文件的方式这里就不做操作了,上面介绍已经说明了,按照标准的文件格式命名就行,根据实际情况选择是用properties还是yml的方式。下面介绍下yml多文档的方式:

# 开发环境
---
spring:
  config:
    activate:
      on-profile: dev
server:
  port: 8081
# 测试环境
---
spring:
  config:
    activate:
      on-profile: test
server:
  port: 8082
# 生产环境
---
spring:
  config:
    activate:
      on-profile: prod
server:
  port: 8082
---
# 公用配置
server:
  servlet:
    context-path: /spring-boot

至于激活的方式,就参考上面的测试即可。

标签:Spring,name,SprintBoot,配置文件,spring,配置,---,简单,入门
来源: https://www.cnblogs.com/tenghu/p/15103924.html