legacy-knowledge-base
公開されました Sep. 10, 2025

ウィジェットの共有オプションでNetVibesとGoogle Gadgetを無効にする方法

written-by

Jorge García Jiménez

How To articles are not official guidelines or officially supported documentation. They are community-contributed content and may not always reflect the latest updates to Liferay DXP. We welcome your feedback to improve How To articles!

While we make every effort to ensure this Knowledge Base is accurate, it may not always reflect the most recent updates or official guidelines.We appreciate your understanding and encourage you to reach out with any feedback or concerns.

legacy-article

learn-legacy-article-disclaimer-text

問題

  • NetvibesとGoogle Gadgetウィジェットの共有オプションは、いくつかの情報を明らかにするかもしれない。 無効にすることは可能ですか?

環境

  • Liferay DXP 7.2

解像度

  • これらのサーブレットのURLはportal.propertiesファイルのプロパティで管理されており、アクセス時に404を表示するように変更することができます:
    google.gadget.servlet.mapping=/google_gadget
    netvibes.servlet.mapping=/netvibes
  • これらのURLへのアクセスを無効にする他の方法は、関連するサーブレットをロードしないことです。 web.xmlファイルでサーブレットのパラメータ<load-on-startup>を 0に変更することで、このロードを避けることができる。
    <servlet>
    <servlet-name>Netvibes Servlet</servlet-name>
    <servlet-class>com.liferay.portal.servlet.NetvibesServlet</servlet-class>
    <load-on-startup>0</load-on-startup>
    <async-supported>true</async-supported>
    </servlet>
    <servlet>
    <servlet-name>Google Gadget Servlet</servlet-name>
    <servlet-class>com.liferay.portal.servlet.GoogleGadgetServlet</servlet-class>
    <load-on-startup>0</load-on-startup>
    <async-supported>true</async-supported>
    </servlet>

did-this-article-resolve-your-issue

legacy-knowledge-base