IntelliJ Java IDE
The moose likes Object Relational Mapping and the fly likes Mapping basics in iBatis Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Object Relational Mapping
Reply Bookmark "Mapping basics in iBatis" Watch "Mapping basics in iBatis" New topic
Author

Mapping basics in iBatis

Hussein Baghdadi
clojure forum advocate
Bartender

Joined: Nov 08, 2003
Posts: 3334

Hi.
I have two entites, Category and Product.

public class Category {
private List products;
}

public class Product {
private Category cat;
}

How to map this in iBatis?
Thanks.
 
IntelliJ Java IDE
 
subject: Mapping basics in iBatis
 
Threads others viewed
Effects of Pagination on Model
Very new and confused
How to map a tagged item?
How to return class instance?
Stuck on manyToMany association
MyEclipse, The Clear Choice