resource bundle override modules not working for Liferay 7.2.1 (GA-2)

Alexander Diukov, modified 5 Years ago. New Member Post: 1 Join Date: 12/4/19 Recent Posts
Try build and deploy Resource Bundle Override  login-web-resource-bundle-override module from blade samples repository.
When I try login to portal I see error in logs:
2020-01-16 10:05:22.079 ERROR [http-nio-8080-exec-10][IncludeTag:128] Current URL /web/guest/home?p_p_id=com_liferay_login_web_portlet_LoginPortlet&p_p_lifecycle=0&p_p_state=maximized&p_p_mode=view&saveLastPath=false&_com_liferay_login_web_portlet_LoginPortlet_mvcRenderCommandName=%2Flogin%2Flogin generates exception: java.lang.StackOverflowError
java.lang.StackOverflowError
        at com.liferay.portal.language.extender.internal.ServiceTrackerResourceBundleLoader.loadResourceBundle(ServiceTrackerResourceBundleLoader.java:83)
        at com.liferay.portal.language.extender.internal.ServiceTrackerResourceBundleLoader.loadResourceBundle(ServiceTrackerResourceBundleLoader.java:83)
thumbnail
Russell Bohl, modified 5 Years ago. Expert Posts: 308 Join Date: 2/13/13 Recent Posts
I can confirm that I can reproduce this on 7.2 DXP SP1.

2020-01-16 21:32:27.834 INFO  [fileinstall-/home/russell/liferay-bundles/liferay-dxp-7.2.10.1-sp1/osgi/modules][BundleStartStopLogger:39] STARTED com.liferay.blade.login.web.resource.bundle.override_1.0.0 [1106]
2020-01-16 21:33:04.663 ERROR [http-nio-8080-exec-2][IncludeTag:128] Current URL /web/guest/home?p_p_id=com_liferay_login_web_portlet_LoginPortlet&p_p_lifecycle=0&p_p_state=exclusive&p_p_mode=view&saveLastPath=false&_com_liferay_login_web_portlet_LoginPortlet_mvcRenderCommandName=%2Flogin%2Flogin generates exception: java.lang.StackOverflowError
java.lang.StackOverflowError
        at com.liferay.portal.language.extender.internal.ServiceTrackerResourceBundleLoader.loadResourceBundle(ServiceTrackerResourceBundleLoader.java:76)
        at com.liferay.portal.language.extender.internal.ServiceTrackerResourceBundleLoader.loadResourceBundle(ServiceTrackerResourceBundleLoader.java:83)

thumbnail
Pasi Kössi, modified 5 Years ago. New Member Posts: 12 Join Date: 10/13/08 Recent Posts
I am also interested in this one, as I am suffering from the same problem. There are all kinds of JIRA reports circling araound the ResourceBundle override area, but I have yet to find a solution that works for module specific overrides in Liferay CE 7.2.1 GA2. I wonde if the problems are fixed in 7.3, and if so, when the blade samples for 7.3 will be made available.
Olga Orlova, modified 5 Years ago. New Member Posts: 6 Join Date: 5/22/13 Recent Posts
Hi everyone,
I've faced this problem at DXP 7.2.10 GA1. It's quite critical to resolve this problem because standard bundle values are auto translated and not suitable for production. 
Have anybody managed to find a way to override another module bundle?
thumbnail
Alfonso Crisci, modified 5 Years ago. Regular Member Posts: 136 Join Date: 4/2/14 Recent Posts
Hello all,
This will be fixed by https://issues.liferay.com/browse/LPS-110482
Palak Chordiya, modified 5 Years ago. New Member Posts: 6 Join Date: 4/6/20 Recent Posts
I want to overide message board language properties  file in liferay 7.2 dxp .Please suggest .Iam also facing issue .1.I have created Activator Project in my workspace2. Created content folder inside src/resources and added langauge_en.Properies file in it .      my-posts=My Topics
3. included  below in bnd.bnd file
Bundle-Name: CustomMessageLangHook
Bundle-SymbolicName: CustomMessageLangHook
Bundle-Version: 1.0.0
Export-Package: CustomMessageLangHook.constants

 Provide-Capability:\ 
liferay.resource.bundle;resource.bundle.base.name="content.Language",\
liferay.resource.bundle;resource.bundle.aggregate:String="(bundle.symbolic.name=CustomMessageLangHook),(bundle.symbolic.name=com.liferay.message.boards.web)";bundle.symbolic.name=com.liferay.message.boards.web;resource.bundle.base.name="content.Language";service.ranking:Long="2";\
servlet.context.name=message-boards-web
 -sources: true
4. Module is getting deployed but overide is not working .