OGNL thread safety
Posted
by Dewfy
on Stack Overflow
See other posts from Stack Overflow
or by Dewfy
Published on 2010-04-30T15:09:30Z
Indexed on
2010/05/05
11:58 UTC
Read the original article
Hit count: 219
I'm going to reuse OGNL library out of Struts2 scope. I have rather large set of formulas, that is why I would like to precompile all of them:
Ognl.parseExpression(expressionString);
But I'm not sure if precompiled expression can be used in multi-thread environment. Does anybody knows if it can be used?
© Stack Overflow or respective owner