-1

我将Liferay DXP用于我的门户应用程序。我想使用控制面板门户属性进行以下实施

  1. 禁用未使用的默认/自定义 Web 服务。
  2. 禁用API页面的访问(api/jsonws)

以上是否可以使用门户属性或控制面板?

任何参考/帮助将不胜感激。

4

1 回答 1

4
#
# The property "jsonws.web.service.paths.excludes" denotes patterns for JSON
# web service action paths that are not allowed even if they match one of
# the patterns set in "jsonws.web.service.paths.includes".
#
# Env: LIFERAY_JSONWS_PERIOD_WEB_PERIOD_SERVICE_PERIOD_PATHS_PERIOD_EXCLUDES
#
jsonws.web.service.paths.excludes=\
    /user/update-password


#
# Set this property to true if JSON web services are discoverable through
# the API page.
#
# Env: LIFERAY_JSONWS_PERIOD_WEB_PERIOD_SERVICE_PERIOD_API_PERIOD_DISCOVERABLE
#
jsonws.web.service.api.discoverable=true

您可以在 portal-ext.properties 中尝试上述属性。

供参考访问。https://github.com/liferay/liferay-portal/blob/master/portal-impl/src/portal.properties

于 2020-05-18T10:04:59.837 回答