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
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
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();
}
//
3 matches
Mail list logo