Hi Gilberto,
Gilberto C. Andrade wrote:
[code]
private boolean flNovo;
public boolean isFlNovo() {return flNovo;}
public void setFlNovo(boolean flNovo) {this.flNovo = flNovo;}
[/code]
Is there any limitation on usage of boolean types (as shown above)?
Yep booleans are supported.
[code]
java.lang.RuntimeException: No matching getter method found for
property 'novo' on class
Looks like you define your column as "novo" but your property is
defined as "flNovo". If you change it to "flNovo" it should work.
kind regards
bob