I solved my problem.

I annotated the setter and not the getter. Is it neccessary to annotate the 
getter because of any spec? Which one?

My code looks like below, now.


  |     /**
  |      * TextArea message
  |      */
  |     @Lob @Column(columnDefinition="NTEXT NULL")
  |     public String getMessage(){
  |             return this.message;
  |     }
  | 
  |     public void setMessage(String s){
  |             this.message = s;
  |     }
  | 




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

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

Reply via email to