Spring|Spring Boot两种全局配置和两种注解的操作方法

目录

  • 零、学习目标
  • 一、全局配置文件概述
  • 二、Application.properties配置文件
    • 1、配置tomcat端口号和web虚拟路径
    • 2、对象类型的配置与使用
    • 3、两种属性注解方式的对比
  • 三、Application.yaml配置文件
    • 四、两种配置文件的比较
      • 五、课后作业

        零、学习目标 1、掌握application.properties配置文件
        2、掌握application.yaml配置文件
        3、掌握使用@ConfigurationProperties注入属性
        4、掌握使用@Value注入属性

        一、全局配置文件概述 全局配置文件能够对一些默认配置值进行修改。Spring Boot使用一个application.properties或者application.yaml的文件作为全局配置文件,该文件存放在src/main/resource目录或者类路径的/config,一般会选择resource目录。

        二、Application.properties配置文件 (一)创建Spring Boot的Web项目PropertiesDemo
        利用Spring Initializr方式创建项目
        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片

        设置项目元数据
        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片

        添加测试和Web依赖
        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片

        设置项目名称及保存位置
        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片

        单击【Finish】按钮,完成项目初始化工作
        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片

        设置项目编码为utf8
        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片

        (二)在application.properties里添加相关配置 点开resource目录,查看应用程序属性配置文件
        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片


        1、配置tomcat端口号和web虚拟路径
        #修改tomcat默认端口号server.port=8888#修改web虚拟路径server.servlet.context-path=/lzy

        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片

        更多配置属性,详见官网https://docs.spring.io/spring-boot/docs/current/reference/html/common-application-properties.html启动应用,查看控制台
        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片


        2、对象类型的配置与使用
        (1)创建Pet类
        在net.hw.lesson03里创建bean子包,在子包里创建Pet类
        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片

        package net.hw.lesson03.bean; /** * 功能:宠物实体类 * 作者:华卫 * 日期:2021年04月28日 */public class Pet {private String type; // 类型private String name; // 名字 public String getType() {return type; } public void setType(String type) {this.type = type; } public String getName() {return name; } public void setName(String name) {this.name = name; } @Overridepublic String toString() {return "Pet{" +"type='" + type + '\'' +", name='" + name + '\'' +'}'; }}

        (2)创建Person类
        在net.hw.lesson03.bean包里创建Person类
        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片

        package net.hw.lesson03.bean; import java.util.List; import java.util.Map; /** * 功能:人类 * 作者:华卫 * 日期:2021年04月28日 */public class Person {private int id; // 编号private String name; // 姓名private List hobby; // 爱好; private Map family; // 家庭成员private Pet pet; // 宠物 public int getId() {return id; } public void setId(int id) {this.id = id; } public String getName() {return name; } public void setName(String name) {this.name = name; } public List getHobby() {return hobby; } public void setHobby(List hobby) {this.hobby = hobby; } public Map getFamily() {return family; } public void setFamily(Map family) {this.family = family; } public Pet getPet() {return pet; } public void setPet(Pet pet) {this.pet = pet; } @Overridepublic String toString() {return "Person{" +"id=" + id +", name='" + name + '\'' +", hobby=" + hobby +", family=" + family +", pet=" + pet +'}'; }}

        (3)在application.properties里配置对象
        #配置对象person.id=1person.name=张三丰person.hobby=旅游,美食,音乐person.family.father=张云光person.family.mother=吴文燕person.family.grandpa=张宏宇person.famliy.grandma=唐雨欣person.family.son=张君宝person.family.daughter=张晓敏person.pet.type=泰迪犬person.pet.name=瑞瑞

        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片

        (4)给Person类添加注解
        添加注解@Component,交给Spring去管理
        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片

        添加注解@ConfigurationProperties(prefix = “person”)
        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片

        注意:采用@ConfigurationProperties注解方式,必须要有set方法,才会自动为Person类所有属性注入相应的值,包括简单类型和复杂类型
        (5)给Pet类添加注解
        • 添加注解@Component,交给Spring去管理
        • 添加注解@ConfigurationProperties(prefix = “person.pet”) - 可以不用添加
        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片

        (6)从Spring容器里获取Person类的实例并输出
        实现接口ApplicationContextAware,实现其抽象方法setApplicationContext
        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片

        声明ApplicationContext对象,并在setApplicationContext里初始化
        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片

        创建测试方法testPerson(),从Spring容器中获取Person类的实例并输出
        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片

        运行测试方法testPerson(),查看结果
        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片

        (7)解决输出结果的汉字乱码问题
        使用JDK工具native2ascii.exe将汉字处理成uncode编码
        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片

        D:\IdeaProjects\PropertiesDemo>cd src/main/resources D:\IdeaProjects\PropertiesDemo\src\main\resources>native2ascii -encoding utf8 application.properties#\u4fee\u6539tomcat\u9ed8\u8ba4\u7aef\u53e3\u53f7server.port=8888#\u4fee\u6539web\u865a\u62df\u8def\u5f84server.servlet.context-path=/lzy #\u914d\u7f6e\u5bf9\u8c61person.id=1person.name=\u5f20\u4e09\u4e30person.hobby=\u65c5\u6e38,\u7f8e\u98df,\u97f3\u4e50person.family.father=\u5f20\u4e91\u5149person.family.mother=\u5434\u6587\u71d5person.family.grandpa=\u5f20\u5b8f\u5b87person.famliy.grandma=\u5510\u96e8\u6b23person.family.son=\u5f20\u541b\u5b9dperson.family.daughter=\u5f20\u6653\u654fperson.pet.type=\u6cf0\u8fea\u72acperson.pet.name=\u745e\u745e D:\IdeaProjects\PropertiesDemo\src\main\resources>

        修改application.properties文件,汉字采用unicode编码形式
        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片

        运行测试方法testPerson(),查看结果
        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片

        (8)从Spring容器里获取Pet类的实例并输出
        查看Pet类的注解,有配置属性的注解@ConfigurationProperties(prefix = "person.pet")
        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片

        在测试类里添加测试方法testPet()
        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片

        运行测试方法testPet(),查看结果
        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片

        注释掉Pet类的配置属性的注解@ConfigurationProperties(prefix = "person.pet")
        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片

        再次运行测试方法testPet(),查看结果
        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片

        修改application.properties,配置宠物对象
        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片

        再次运行测试方法testPet(),查看结果
        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片

        大家可以看到,宠物对象的属性依然没有被注入,下面我们换一种属性注解的方式,采用@Value注解方式。
        给Pet类的属性添加值注解@Value
        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片

        再次运行测试方法testPet(),查看结果
        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片


        3、两种属性注解方式的对比
        • 采用@ConfigurationProperties注解方式,必须要有set方法,才会自动为所注解的类的全部属性注入相应的值,包括简单类型和复杂类型(List、Map、Pet……)。
        • 采用@Value注解方式,优点在于可以不要set方法,但是有两点不足:其一、需要一个一个地注入,显得麻烦;其二、对于复杂类型不能注入,比如Map、List、Pet等。

        三、Application.yaml配置文件 1、备份application.properties文件 文件更名为application.back,即让此文件不起作用
        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片

        2、在resoures目录里创建application.yaml文件
        创建application.yaml文件
        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片

        配置服务器属性
        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片

        配置person对象属性
        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片

        配置pet对象属性
        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片

        查看application.yaml文件内容
        #配置服务器server:port: 8888servlet:context-path: /lzy #配置person对象person:id: 1name: 张三丰hobby:旅游美食音乐family: {father: 张云光,mother: 吴文燕,grandpa: 张宏宇,grandma: 唐雨欣,son: 张君宝,daughter: 张晓敏}pet:type: 泰迪犬name: 瑞瑞 #配置pet对象pet:type: 泰迪犬name: 瑞瑞

        3、运行测试方法testPerson(),查看结果
        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片

        4、运行测试方法testPet(),查看结果
        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片


        四、两种配置文件的比较 1、application.properties配置文件
        • 采用XML语法,键值对:键=值,没有层次结构
        • 如果值里有汉字,必须得转成unicode,否则会出现乱码问题
        2、application.yaml配置文件
        • 采用YAML语法,键值对:键: 值(冒号与值之间有空格),具有层次结构
        • 允许值里有汉字,不必转成unicode,也不会出现乱码问题

        五、课后作业 任务:修改StudentInfo项目输出学生信息
        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片

        创建学生实体类Student
        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片

        添加属性
        private String id; private String name; private String gender; private int age; private String major; private String telephone; private String email; private String hobby;

        • 添加getter和setter
        • 添加toString()方法
        • 添加注解@Component
        • 添加注解@ConfigureProperties
        • 将application.properties更名为application.yaml
        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片

        配置student对象属性
        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片

        • 修改控制器StudentInfoController,student()方法里返回student的值
        • 运行启动类
        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片

        在浏览器里访问http://localhost:8080/student
        Spring|Spring Boot两种全局配置和两种注解的操作方法
        文章图片

        【Spring|Spring Boot两种全局配置和两种注解的操作方法】到此这篇关于Spring Boot两种全局配置和两种注解的文章就介绍到这了,更多相关Spring Boot配置注解内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

          推荐阅读