<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <title>how to extend BaseHotDeployListener in liferay DXP</title>
  <link rel="self" href="https://liferay.dev/c/message_boards/find_thread?p_l_id=119785294&amp;threadId=110662802" />
  <subtitle>how to extend BaseHotDeployListener in liferay DXP</subtitle>
  <id>https://liferay.dev/c/message_boards/find_thread?p_l_id=119785294&amp;threadId=110662802</id>
  <updated>2026-04-05T14:41:06Z</updated>
  <dc:date>2026-04-05T14:41:06Z</dc:date>
  <entry>
    <title>RE: how to extend BaseHotDeployListener in liferay DXP</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=110680940" />
    <author>
      <name>Mohamed Faisal</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=110680940</id>
    <updated>2018-08-09T14:16:17Z</updated>
    <published>2018-08-09T14:16:17Z</published>
    <summary type="html">&lt;p&gt;Thanks Nebinger. Its working fine.&lt;/p&gt;
&lt;p&gt;BaseHotDeployListener is called restarting the server.&lt;/p&gt;</summary>
    <dc:creator>Mohamed Faisal</dc:creator>
    <dc:date>2018-08-09T14:16:17Z</dc:date>
  </entry>
  <entry>
    <title>RE: how to extend BaseHotDeployListener in liferay DXP</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=110669140" />
    <author>
      <name>David H Nebinger</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=110669140</id>
    <updated>2018-08-04T15:17:37Z</updated>
    <published>2018-08-04T15:17:37Z</published>
    <summary type="html">&lt;p&gt;In gogo, you can scr:list # to see the services your bundle has, then
  scr:info ## on the service number from list output to see the status
  of the service.  Make sure they are all active and have no unresolved dependencies.&lt;/p&gt;</summary>
    <dc:creator>David H Nebinger</dc:creator>
    <dc:date>2018-08-04T15:17:37Z</dc:date>
  </entry>
  <entry>
    <title>RE: how to extend BaseHotDeployListener in liferay DXP</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=110668738" />
    <author>
      <name>Mohamed Faisal</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=110668738</id>
    <updated>2018-08-04T11:01:44Z</updated>
    <published>2018-08-04T11:01:44Z</published>
    <summary type="html">&lt;p&gt;I have verified that the component is ACTIVE and deployed to
  the  liferay server, but its not called the listener.&lt;/p&gt;
&lt;p&gt;in DXP we build and deploy in different way unlike liferay 6.2, that
  is module not war.  Hence, do we need to call different listener?&lt;/p&gt;</summary>
    <dc:creator>Mohamed Faisal</dc:creator>
    <dc:date>2018-08-04T11:01:44Z</dc:date>
  </entry>
  <entry>
    <title>RE: how to extend BaseHotDeployListener in liferay DXP</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=110663354" />
    <author>
      <name>David H Nebinger</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=110663354</id>
    <updated>2018-08-03T13:46:52Z</updated>
    <published>2018-08-03T13:46:52Z</published>
    <summary type="html">&lt;p&gt;That is all that is necessary.  Have you verified that the component
  is started (ACTIVE) and that the service, too, has started (no
  unresolved dependencies)?&lt;/p&gt;</summary>
    <dc:creator>David H Nebinger</dc:creator>
    <dc:date>2018-08-03T13:46:52Z</dc:date>
  </entry>
  <entry>
    <title>how to extend BaseHotDeployListener in liferay DXP</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=110662801" />
    <author>
      <name>Mohamed Faisal</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=110662801</id>
    <updated>2018-08-03T10:13:19Z</updated>
    <published>2018-08-03T10:13:19Z</published>
    <summary type="html">&lt;p&gt;To extend Model Listener In liferay 7-DXP we use the component&lt;/p&gt;
&lt;table&gt;
  &lt;colgroup&gt;
    &lt;col /&gt;&lt;/colgroup&gt;
  &lt;tbody&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;p&gt;@Component(immediate = true, service = ModelListener.class)&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;I need to extend BaseHotDeployListener in my portlet. I tried with  &lt;/p&gt;
&lt;table&gt;
  &lt;colgroup&gt;
    &lt;col /&gt;&lt;/colgroup&gt;
  &lt;tbody&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;p&gt;@Component(immediate = true, service = HotDeployListener.class)&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;its not working. Please let me how to extend BaseHotDeployListener 
  in DXP.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Faisal&lt;/p&gt;</summary>
    <dc:creator>Mohamed Faisal</dc:creator>
    <dc:date>2018-08-03T10:13:19Z</dc:date>
  </entry>
</feed>
