I have POJO classes:

class Ticket {
    private int id;
    private double cost;
    private Date time;
    private List<Place> places;

    // Getters and setters here
}

class Place {
    private int row;
    private int place;

    // Getters and setters here
}

Then I create one ticket and some places:

Ticket ticket = new Ticket();
ticket.setCost(58.7);
ticket.setTime(new Date());

Place place1 = new Place();
place1.setRow(1);
place1.setPlace(2);
ticket.addPlace(place1);

Place place2 = new Place();
place2.setRow(3);
place2.setPlace(4);
ticket.addPlace(place2);

And now I want to save it to DB:

session.insert("insertTicket", ticket);
session.commit();

In MapperConfig.xml I write this lines:

<insert id="insertTicket" parameterType="Ticket">
    INSERT INTO tickets (cost, time) VALUES (#{cost}, #{time})
</insert>

How I can save List places in automatic mode? Does MyBatis can save it for me? Or I need to iterate manually with foreach and insert every Place by hand?

Thanks for any help.

link|improve this question
feedback

1 Answer

up vote 4 down vote accepted

Even though MyBatis is able to support the reverse direction (i.e. filling the list during a query with a nested select or from a join), there is no automatic mode that inserts the containing list into the database.

According to this Google Groups discussion you have to insert the list elements manually.

link|improve this answer
Hm. Not good... I think MyBatis smarter. Is exist ORM for Java that can do this operation for me? – swap_i Nov 27 '10 at 8:27
3  
MyBatis actually is smart. But it is not intended to be a ORM. It's only meant as a thin wrapper around JDBC. If this functionality is a requirement then you can look for a ORM like Hibernate hibernate.org or EclipseLink eclipse.org/eclipselink . – vanje Nov 27 '10 at 15:17
Thank you, I'll read about it. – swap_i Nov 28 '10 at 6:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.