2019-07-01 springboot学习笔记-配置文件

  • 解决乱码问题 设置配置文件为UTF-8编码

1.spring 注解

spring注解的作用:

1、spring作用在类上的注解有@Component、@Responsity、@Service以及@Controller;而@Autowired和@Resource是用来修饰字段、构造函数或者设置方法,并做注入的。
2、当注解作用在类上时,表明这些类是交给spring容器进行管理的,而当使用@Autowired和@Resource时,表明我需要某个属性、方法或字段,但是并不需要我自己去new一个,只需要使用注解, spring容器会自动的将我需要的属性、方法或对象创造出来。这就是通常所说的依赖注入和控制反转。

@controller 控制器(注入服务)

用于标注控制层,相当于struts中的action层

@service 服务(注入dao)

用于标注服务层,主要用来进行业务的逻辑处理

@repository(实现dao访问)

用于标注数据访问层,也可以说用于标注数据访问组件,即DAO组件.

@component

把普通pojo实例化到spring容器中,相当于配置文件中的
现在项目上,本工程中的类,一般都使用@Component来生成bean。

@Autowired

作用:@Autowired表示被修饰的类需要注入对象,spring会扫描所有被@Autowired标注的类,然后根据 类型 在ioc容器中找到匹配的类注入。

2.spring 标签

@value

value = 字面量 / ${ } 从环境变量,配置文件中取值 /#{spEL}
Spring 通过注解获取*.porperties文件的内容,除了xml配置外,还可以通过@value方式来获取。

3.配置文件注入

image.png
image.png
  • 如果说,我们只是在某个业务逻辑中需要获取一下配置文件中的某些值,使用@Value
  • 如果说,我们专门编写了一个javaBean来和配置文件进行映射,我们就直接使用@ConfigurationProperties

支持校验

@Validated
@Email

@Component
@ConfigurationProperties(prefix = "student")
@Validated
public class Student {
   // @Value("${student.age}")
    private int age;

    @Email
   // @Value("${student.name}")
    private String name;

@ConfigurationProperties 标签

image.png

4.@PropertySource 标签 和 @ImportResource 标签

@PropertySource 加载指定配置文件

@Component
@ConfigurationProperties(prefix = "student")
@PropertySource(value = {"classpath:person.properties"})
@Validated
public class Student {
   // @Value("${student.age}")
    private int age;

    @Email
   // @Value("${student.name}")
    private String name;
image.png
image.png

@springboot推荐给容器中添加组件的方式;推荐使用全注解的方式

1.配置类=======sping中的配置文件
使用@Bean给容器中添加组件

/**
 * @Configuration 指明当前类是一个配置类 替代之前的spring配置文件
 *
 * 在配置文件中标签添加组件
 */
@Configuration
public class MyAppConfig {

    //将方法的返回值添加到容器中,容器中这个默认的ID就算方法名
    @Bean
    public HelloService HelloService(){
          return new HelloService();
    }
}

测试是否注入成功

    @Autowired
    ApplicationContext ioc;

    @Test
    public void testService(){
        boolean b = ioc.containsBean("HelloService");
        System.out.println(b);
    }

5.配置文件 占位符

student.age=${random.int}
student.name=zhangsan_${student.age}_${student.hello:hello}_${random.uuid}
image.png

6.Profile

1.多Profile文件

我们在主配置文件编写的时候,文件名可以是 application-{profile}.properties/yml
默认使用 application.properties

2.yml 支持多文档块方式

server:
  port: 8081
spring:
  profiles:
    active: prod
---
server:
  port: 8082
spring:
  profiles: dev

---
server:
  port: 8083
spring:
  profiles: prod

3.激活指定Profile

优先级 : doc命令行 > Arguments > options(虚拟机) > properties > yml
1.在配置文件中指定
spring.profiles.active=dev

2.命令行方式


image.png

也可以在打包之后
java -jar helloworld-01-0.0.1-SNAPSHOT.jar --spring.profiles.active=dev;

3.虚拟机参数 VM options
-Dspring.profiles.active=prod

7.配置文件加载位置

高优先级会覆盖低优先级,会从四个配置文件中加载配置
互补配置

image.png

  • file 是当前项目根目录
  • classpath 是resources目录
#配置项目的访问路径
server.servlet.context-path=/wzh

我们还可以通过配置 spring.config.location来改变默认配置
项目打包好之后,我们可以使用命令行参数的形式,启动项目的时候来指定配置文件的新位置,指定配置文件和默认加载的这些配置文件共同起作用,形成互补配置

8.外部配置加载顺序

高优先级的配置覆盖低优先级的配置,所有的配置会形成互补配置
https://docs.spring.io/spring-boot/docs/2.1.6.RELEASE/reference/html/boot-features-external-config.html

image.png

命令行参数: 多个配置用空格分开
java -jar helloworld-01-0.0.1-SNAPSHOT.jar --server.port=8089

由jar包外 向jar包内寻找
优先加载带profile的,再来加载不带profile的

9.自动配置原理

官方配置文档: https://docs.spring.io/spring-boot/docs/2.1.6.RELEASE/reference/html/common-application-properties.html

自动配置原理:
1)springboot启动的时候加载主配置类,开启了自动配置功能@EnableAutoConfiguration

  1. @EnableAutoConfiguration 作用
    利用@Import({AutoConfigurationImportSelector.class})给容器导入一些组件
    可以查看selectImports() 方法的内容
    最后 将类路径下 META-INF/spring.factories 里面配置的所有EnableAutoConfiguration的值加入到了容器中;
image.png
image.png

快捷搜索快捷键 ctrl + n

细节

1.@Conditional派生注解
作用:必须是@Conditional 指定的条件成立,才给容器中添加组件,配置里面的所有内容才生效。
自动配置类必须在一定条件下才能生效;


image.png

我们怎么知道哪些自动配置类生效了?
开启debug

# 开启SpringBoot的debug
debug=true

你可能感兴趣的:(2019-07-01 springboot学习笔记-配置文件)