Description
We are using struts framework for our web application. We need to support different number formats in the same application instance based on user's location. During parallel access since ConvertUtils is a singleton class the converter registered with the Pattern of first user is overridden by the converter with the pattern of second user.
We couldnot introduce the logic of picking the pattern in the converter class itself as this class needs the user details to pick up the pattern. Did anyone else face a similar issue. Was there any workaround or resolution for this?
Thanks in Advance.