I have a bean class which renders some chart, it works perfect, but if i make 2 request for the same bean simultaneously, the private properties of bean class are being overridden by second one, resulting in i normal behavior.
public class SomeGraphBean extends BaseChartGraphBean{
private String name;
public ComplianceGraphBean(){
super();
name = request.getparameter("name");
}
......
}
So the name is being rendered with the same value for 1-st and 2-nd call if i call simultaneously.