Is the org.apache.xalan.processor.TransformerFactoryImpl class a thread safe? Or do I need to save a local copy for each thread?
org.apache.xalan.processor.TransformerFactoryImpl
According to the Xalan Transform API :
A TransformerFactory may not perform concurrent mulitple operations.
He certainly does not look thread safe looking at the source
Looking at the source code, we can assume that it should be thread safe if you do not call setter methods after the first initialization.