Mantis - Resin
Viewing Issue Advanced Details
66 minor always 03-30-05 00:00 03-01-05 00:00
sam  
 
normal  
closed  
no change required  
none    
none  
0000066: ejb3.0 is enhancing an unmarked field
RSN-57
3.0.s050328

A bean has a field that is not enhanced:

  @Basic
  public String getCompanyWebsite() ...
  public void setCompanyWebsite(String companyWebsite) ...

  public void setComplete(boolean isComplete) ...
  public boolean isComplete() ..

But Resin tries to use the field "complete" anyways, there is an exception from the database that the "complete" field does not exist.


Notes
(0000072)
sam   
03-30-05 00:00   
This behaviour is part of the new draft spec (edr2).
You need to use @java.ejb.Transient. The default is to mark as persistent.