我正在使用Liferay 6进行开发。
我试图理解Liferay Hooks的概念。在谷歌搜索时,我遇到了一个Liferay Hooks示例,该示例使用以下条目指定了liferay-hook-xml:
的liferay-hook.xml
<hook>
<portal-properties>portal-hook.properties</portal-properties>
<service>
<service-type>com.liferay.portal.service.UserLocalService</service-type>
<service-impl> com.integratingstuff.liferay.hooks.CustomUserLocalServiceImpl</service-impl>
</service>
</hook>
请问有谁请告诉我这究竟是什么意思?我的理解是Liferay的UserLocalService类已被重写以使用CustomUserLocalServiceImpl。这是对的吗?
答案 0 :(得分:4)
我的意见<service-impl>
会覆盖UserLocalServiceWrapper
。使用此概念,您可以为liferay默认设计添加一些功能。
请参阅:http://www.liferay.com/documentation/liferay-portal/6.0/development/-/ai/overriding-a-portal-service