Bug fixed: the line in the entity bean:

  | public void setMsreDesc(String msreDesc) {
  |     msreDesc = msreDesc;
  | }
  | 

should be 

  | public void setMsreDesc(String msreDesc) {
  |     this.msreDesc = msreDesc;
  |   }
  | 

This is really grievous and the bug was hard to track...Finally eclipse's 
yellow warning "this assignment has no effect" caught my attention, I added a 
"this." and things are working. 

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4056518#4056518

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4056518
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to