123456789101112131415import lombok.Data;import org.springframework.stereotype.Component;import org.springframework.beans.factory.annotation.Value;/** * @author maple * @since 2022-12-06 */@Data@Componentpublic class GatewayProperties { @Value("${gateway.host}") private String host;} 12345678class Test { @Autowired private GatewayProperties gatewayProperties; void Test() { String url = gatewayProperties.getHost(); }}