Is it possible to do this in JSTL / JSP - JavaBean with static properties ?
javaBean:
publicclass Util{
privatestatic String s;
publicstaticvoid setS(String s){ this.s = s;}
publicstatic getS(){return s;}
// some other static utilities needed to be called by other classes
}
JSP Page needs to output the value of s (the static value)
Is it okay for the JavaBean used to have static values and static get and set?

