Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我使用决策中心 > 配置 > 安装设置向导 > 步骤 5:设置配置参数 > 新建 ... 自定义参数创建自定义配置参数,我如何使用决策中心 API 访问该自定义参数键/值?
可以使用以下方法访问自定义参数:
ManagerBean managerBean= ManagerBean.getInstance(); IlrSession session = managerBean.getSession(); String value = IlrSettings.getGlobalSetting(session, "key");