Re: Strange behavior using DataNucleus JDO, always getting same results

2015-08-25 Thread Thiago H de Paula Figueiredo
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

Re: Strange behavior using DataNucleus JDO, always getting same results

2015-08-24 Thread Alex Kotchnev
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

Strange behavior using DataNucleus JDO, always getting same results

2015-08-24 Thread yazmin georgina quintal
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);