🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
``` /** * @author 张跃帅 * @Description: license信息-自动配置 * @date 2020/08/12 */ @Configuration public class LicenseConfig { /** * License授权-注入Bean */ @Bean @Primary protected ClientLicenseModel initClientLicenseConfig() { // 获取-操作系统 Boolean hasWindows = SystemUtil.getOsInfo().isWindows(); // 创建客户端license对象 ClientLicenseModel clientLicense = new ClientLicenseModel(); // 赋值 clientLicense.setOrgName("郑州通慧信息技术有限公司"); clientLicense.setLicenseKey("05ab8f449352803fc7"); // 判断 if (hasWindows) { // windows系统 clientLicense.setLicensePath("D:\\jump-license\\20240522-ZZTHXX\\license.lic"); } else { clientLicense.setLicensePath("/www/wwwroot/jump-license/license.lic"); } // 返回 return clientLicense; } }