On Mon, 24 Aug 2015 21:19:25 -0300, yazmin georgina quintal
wrote:
I Know tapestry weave my page.java, I think that by some reason the
weaving is replacing variable resultados with a cached value and using
it in place of the returned value from JDO,
Tapestry does change the bytecode of p
Yazmin - sounds like some kind of DataNucleus behavior. In general,
depending on how you have declared the relationships between your data
objects, or some of your JDO configuration options, JDO/DataNucleus might
be caching some of the results in the "related" collection of objects.
Chances are th
I am using Tapestry 5.4, and integrating datanucleus using tynamo.
In my page.java, i get some data to show in page.tml:
@CommitAfter
public List getResults() {
String filter = getFilter();
List resultados =
getDao().getStockDao().getExistenciasGeneralesWidthProductFilter(filter);