1

I am getting following error while performing update operation: Property 'price' is not available for write access.

updateStatement : update istream FaultyStream set price = 100 where id = 7;

My Event class implements java.io.Serializable. Still unable to perform update.

aru007
  • 370
  • 3
  • 11

1 Answers1

1

For POJO event classes, I generate getter and setter methods. The IDE does that for me. Esper calls the setter method and that be public void setPrice(...) {...}.

goodie
  • 364
  • 1
  • 2
  • 4