当前位置:   article > 正文

SpringBoot配置文件application.properties的理解_application.properties文件

application.properties文件

一、存放位置分类

1.当前项目根目录下的config目录下

2.当前项目的根目录下

3.resources目录下的config目录下

4.resources目录下

按照这上面的顺序,4个配置文件的优先级依次降低。

 我们在项目里面4个位置分别设置了各种的application.properties文件。每个文件都设置了各种的端口号,我们启动项目看到我们当前使用的端口号是优先级最高的项目根目录下config里面的配置。

 我们删除掉项目根目录下的config目录,现在项目使用的端口是项目根目录下的application.properties。

 二、自定义存放位置

如果我们不在这4个位置也想加载我们的配置文件的话,我们可以在resources目录下创建一个新目录命名为myconfig,目录下存放一个application.properties文件。我们可以在打包成jar的情况下在启动命令中加入配置文件的参数,就可以启动自定义的配置。

 java -jar xx.jar --spring.config.location=classpath:/myconfig/

三、自定义文件名

我们的application.properties文件名称也可以修改,比如修改成app.properties。我们可以在打成jar包的情况下在启动命令下加入配置文件名的参数,就可以使用自定义配置文件名。

 

java -jar SpringBootDemo-0.0.1-SNAPSHOT.jar --spring.config.name=app

我们看到现在项目使用的端口是app.properties文件下的8081端口了。 

四、属性注入

我们在application.properties文件中定义属性:

  1. student.name=zhangsan
  2. student.age=20

我们通过@Value注解把这些属性注入到我们的Student对象中:

示例代码如下:

  1. import org.springframework.beans.factory.annotation.Value;
  2. import org.springframework.stereotype.Component;
  3. /**
  4. * @author qinxun
  5. * @date 2023-06-15
  6. * @Descripion: 学生实体类
  7. */
  8. @Component
  9. public class Student {
  10. @Value("${student.name}")
  11. private String name;
  12. @Value("${student.age}")
  13. private Integer age;
  14. @Override
  15. public String toString() {
  16. return "Student{" +
  17. "name='" + name + '\'' +
  18. ", age=" + age +
  19. '}';
  20. }
  21. }

测试:

  1. import com.example.springbootdemo.bean.Student;
  2. import org.junit.jupiter.api.Test;
  3. import org.springframework.beans.factory.annotation.Autowired;
  4. import org.springframework.boot.test.context.SpringBootTest;
  5. @SpringBootTest
  6. class SpringBootDemoApplicationTests {
  7. @Autowired
  8. private Student student;
  9. @Test
  10. void contextLoads() {
  11. // 输出 Student{name='zhangsan', age=20}
  12. System.out.println(student);
  13. }
  14. }

五、类型安全的属性注入

示例代码如下:

  1. import org.springframework.boot.context.properties.ConfigurationProperties;
  2. import org.springframework.stereotype.Component;
  3. /**
  4. * @author qinxun
  5. * @date 2023-06-15
  6. * @Descripion: 学生实体类
  7. */
  8. @Component
  9. @ConfigurationProperties(prefix = "student")
  10. public class Student {
  11. private String name;
  12. private Integer age;
  13. public String getName() {
  14. return name;
  15. }
  16. public void setName(String name) {
  17. this.name = name;
  18. }
  19. public Integer getAge() {
  20. return age;
  21. }
  22. public void setAge(Integer age) {
  23. this.age = age;
  24. }
  25. @Override
  26. public String toString() {
  27. return "Student{" +
  28. "name='" + name + '\'' +
  29. ", age=" + age +
  30. '}';
  31. }
  32. }

这里我们主要引入@ConfigurationProperties(prefix="student")注解,并且配置了属性的前缀,此时自动将Spring容器中对应的数据注入到对象对应的属性中,不用通过@Value注解一个个注入。

配置文件:

  1. student.name=lisi
  2. student.age=20

测试: 

  1. import com.example.springbootdemo.bean.Student;
  2. import org.junit.jupiter.api.Test;
  3. import org.springframework.beans.factory.annotation.Autowired;
  4. import org.springframework.boot.test.context.SpringBootTest;
  5. @SpringBootTest
  6. class SpringBootDemoApplicationTests {
  7. @Autowired
  8. private Student student;
  9. @Test
  10. void contextLoads() {
  11. // 输出 Student{name='lisi', age=20}
  12. System.out.println(student);
  13. }
  14. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/239490
推荐阅读
相关标签
  

闽ICP备14008679号