Liferay Builder creates a couple of classes to access database entities. Programmer is intended to change some if this classes to produce custom functionality. For example to change functionality of class MyEntity_LocalServiceUtil a programmer should change MyEntity_LocalServiceImpl.
Is above correct?
So, the question is: how to extend functionality correctly?
For example I want to add data access method which uses basic data access in turn?
I saw in builder code, that they use myEntity_Persistence member object to read/write entities from/to database.
Is this correct?
Doing so, I found that results are not always consistent. For example, I write something into database in one place (application thread) and see that data in underlying database changed, but in other place I am still receiving old results.
May there is some flush or refresh methods I should call to make consistency?
UPDATE 1
It is probably multithreading issue of Builder's API.
I am checking System.identityHashCode() of myClass_Persistence object and see it is the same for all clients, while the results are different.
I.e. I see literally in my log how entries added via myClass_Persistence objects and next I see how "find" method on the very same instance returns old data. Simultaneously I see that data in database is updated and that calls to this instance from other client returns new data. And if first client calls find again, it again receives old data!
May be they are attaching to the thread identifier? Or probably I need to introduce memory barriers or something?
Looks like persistence object in one thread just doesn't know database were updated!
UPDATE 2
I have added
myClass_Persistence.clearCache()
line before calling finder method and this looks like solved the problem.
Am I really required to call clearCache() while working with databases in Liferay? Or this necessity means that I do something wrongly in other place?