如何通过提供服务名称来检索和调用存储在WSO2 Governance Registry“GREG”中的服务URL;有没有GREG API提供的简单Java方法来准确获取服务的url而不是整个元数据?
感谢。
答案 0 :(得分:0)
Registry governanceRegistry = GovernanceUtils
.getGovernanceUserRegistry(registry, username);
**// All governance artifacts should be loaded.
GovernanceUtils.loadGovernanceArtifacts((UserRegistry) governanceRegistry);**
ServiceManager manager = new ServiceManager(governanceRegistry);
但是我不知道为什么在使用之前应该加载所有的治理工件。
答案 1 :(得分:0)
请参阅Governance Artifact Search示例文档,它演示了如何使用属性搜索治理工件并获取分页结果。您也可以参考this blog。