spring boot自定义配置时在yml文件输入有提示

自定义一个配置类,然后在yml文件具体配置值时,一般不会有提示,这个解决这个问题

依赖

        
        
            org.springframework.boot
            spring-boot-configuration-processor
            true
        

重新刷一下Pom依赖

spring boot自定义配置时在yml文件输入有提示_第1张图片

 自定义配置类

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一下加入依赖所在的项目

spring boot自定义配置时在yml文件输入有提示_第2张图片

 yml文件配置

sys:
  pe:
    dingtalk:
      robot-url: xxx
      secret: xxx

 效果图

spring boot自定义配置时在yml文件输入有提示_第3张图片 

spring boot自定义配置时在yml文件输入有提示_第4张图片

你可能感兴趣的:(spring,boot,后端)