Good morning in my timezone.
I changed
Struts framework to read the message resources from database instead from a file. I extended from MessageResourcesFactory and from MessageResources classes.In the end i configured the struts-config.xml file and replace the tag
Everything worked fine.My problem is related with the refresh of the message resources. I have build a ContextListener that puts a
thread running , this thread makes the refresh. Now the question , how can i access my MessageResources class ? I now that inside an action i have a method that retrieves the resources getResources(HTTPRequest), but because i am running from an external class i do not have access to that method.At least i tried to use the MessageResources.getMessageResources("myResources") the input parameter used is equal to the parameter used in the
tag
above. This method retrieves the MessageResources from Struts not my extended version that contains the refresh method.
Can anyone help me ? I am stuck with this one.
Thanks in advance
Best Regards