需要帮助在 liferay 中测试方法 api/jsonws

Need help testing a method in liferay api/jsonws

我正在尝试在 liferay 7.3.5-ga6 中测试 api/jsonws 的功能。

我要测试的功能是 class GroupLocalServiceUtil 中的“更新组”。我 运行 在填写变量时遇到了问题。具体来说,“nameMap”和“descriptionMap”。这些变量在“java.util.map”数据类型中,我正在努力找出要在此处填写的内容。 我想使用此功能以编程方式更新 liferay 中的站点(组)。

有人知道我需要在这里填写什么吗?

这是update-groupapi/jsonws

后面方法的签名

查看GroupServiceImpl class。

public Group updateGroup(
        long groupId, long parentGroupId, Map<Locale, String> nameMap,
        Map<Locale, String> descriptionMap, int type,
        boolean manualMembership, int membershipRestriction,
        String friendlyURL, boolean inheritContent, boolean active,
        ServiceContext serviceContext)
    throws PortalException {

在 nameMap 参数中尝试以下 json:

{
 "it_IT":"name it",
 "fr_FR":"name fr"
}