1.Spring Boot 自定义配置
在 SpringBoot 的核心配置文件中,除了使用内置的配置项之外,我们还可以在自定义配置,然后采用如下注解去读取配置的属性值
2. @Value注解
作用:用于逐个读取 application.properties 中的配置
2.1 创建module
006-springboot-custom-configuration
2.2 在核心配置文件中自定义内容
2.3 在Controller类中获取自定义配置信息
在 SpringBootController 中定义属性,并使用@Value 注解或者自定义配置值,并对其方法进行测试
package com.zzy.springboot.web;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
@Controller
public class SpringBootController {
@Value("${school.name}")
private String schoolName;
@Value