Hi,

I found beaneditform a time saver, so far I use it only on simple entities,
how to use it on entities that has a look up, something like following, what
is a best appraoch? thanks.


public class OrderLine {

    Long id;
    private Item item;

    @ManyToOne(fetch = FetchType.LAZY)
    @JoinColumn(name="item_id")
    public Item getItem() {
        return item;
    }
}


-- 
View this message in context: 
http://www.nabble.com/T5%3A-beaneditform-and-entities-with-lookup-tp15773101p15773101.html
Sent from the Tapestry - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to