💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
``` @Component public class OccAuthenticationUtil { // 把 yml 中的配置绑定到工具类静态变量上 private static String jointAccount; @Value("${occ.gooki.joint-account}") public void setJointAccount(String jointAccount) { OccAuthenticationUtil.jointAccount = jointAccount; } // 直接 jointAccount 就能使用了 } 类上需要加@Component 这种注解, 不然还是null ```