Cache entry invalidation on updates

2005-05-22 Thread Oscar Picasso
te cache. But I am under the impression that read-write caches are unrelated to the invalidation of particular cache entries on inserts or updates. Am I right? Any idea of how to do what I want? Oscar Picasso __ Do You Yahoo!? Tired of spam? Yaho

Bidirectional parent-child relationship and groupBy

2005-04-07 Thread Oscar Picasso
Hi, I have something like that: class Category { int id; List subcategories; ..getters and setters } class Subcategory { int id; Category parent; ..getters and setters } A groupBy in the Category resultMap loads the related subcategories. However while loading these subcate

Support for Java 1.5 generics

2005-04-05 Thread Oscar Picasso
Hi, It seems that IBatis (or maybe cglib) doesn't fully support Java 1.5 generics. Here is my use case (a somewhat deep hierarchy): = DOMAIN MODEL = //- public interface Persistable { public void setId(Integer id); public Integer getId(); } //