package com.rj.config; import lombok.Data; import org.springframework.boot.context.properties.ConfigurationProperties; /** * 高德开放平台 Web 服务 Key(地理编码、周边搜索等)。 */ @Data @ConfigurationProperties(prefix = "amap") public class AmapProperties { /** * Web 服务类型的 Key,对应控制台「应用 Key」。 */ private String webServiceKey = ""; }