package cn.teammodel.config.ies; import lombok.Getter; import org.springframework.beans.factory.annotation.Value; import org.springframework.context.annotation.Configuration; @Getter @Configuration public class IESConfig { @Value("${ies.server-url}") private String serverUrl; }