In my java pojo XOM model , I have a static variable say count.I am executing 5 rules and it is increasing the count variable by one. So in the end of the execution I have value as count = 5 .
Now if I declare a non static variable count and increment its value for each rule execution,will the variable be initialized 5 times and it is non static.
In other words, Will 5 instances of my java XOM model class will be created if the object is not declared as static ?