自定义一个配置类,然后在yml文件具体配置值时,一般不会有提示,这个解决这个问题
依赖
<!--自定义配置类,在yml文件写的时候会有提示-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
重新刷一下Pom依赖
自定义配置类
package com.example.redissontest.config;
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
//以下注解是把改配置类注入到容器中
@ConfigurationProperties(prefix = "sys.pe.dingtalk")
@Component
@Data
public class DingTalkConfig {
private String robotUrl;
private String secret;
}
重新build一下加入依赖所在的项目
yml文件配置
sys:
pe:
dingtalk:
robot-url: xxx
secret: xxx
效果图