使用门户网站属性或控制面板禁用Liferay Web服务

问题描述 投票:1回答:1

我正在将Liferay DXP用于我的门户网站应用程序。我想使用控制面板门户属性

执行以下实现
  1. 禁用未使用的默认/自定义Web服务。
  2. 禁用对API页面的访问(api / jsonws)

是否可以使用门户网站属性或控制面板进行以上操作?

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

liferay liferay-7 liferay-dxp
1个回答
2
投票
#
# 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

© www.soinside.com 2019 - 2024. All rights reserved.