Re: Can't delete without the setter method

2008-12-04 Thread Nicholoz Koka Kiknadze
Please enable logging to see what gets executed and specifically what value for #jobPostingId# is passed. On Thu, Dec 4, 2008 at 9:15 PM, Michael He <[EMAIL PROTECTED]> wrote: > > Nothing happens without deleting anything > > Micheal > > > Kai Grabfelder-2 wrote: > > > > hm looks like a bug to m

Re: Can't delete without the setter method

2008-12-04 Thread Michael He
Nothing happens without deleting anything Micheal Kai Grabfelder-2 wrote: > > hm looks like a bug to me. What happens when you perform the delete? Just > nothing or an exception? > > Regards > > Kai > > > --- Original Nachricht --- > Absender: Michael He > Datum: 03.12.2008 15:56 >> >> if

Re: Can't delete without the setter method

2008-12-04 Thread Kai Grabfelder
hm looks like a bug to me. What happens when you perform the delete? Just nothing or an exception? Regards Kai --- Original Nachricht --- Absender: Michael He Datum: 03.12.2008 15:56 > > if i don't set the setter method of the keyword-column property in a > javabean,then i can't delete it usi

Can't delete without the setter method

2008-12-03 Thread Michael He
if i don't set the setter method of the keyword-column property in a javabean,then i can't delete it using this property? for example: the javabean: public class JobPosting implements Serializable { private int jobPostingId; //missing other properties... ...