Julien Hoarau opened SPR-16727 and commented
SynchronossPartGenerator creates a new NioMultipartParser with:
NioMultipartParser parser = Multipart.multipart(context).forNIO(listener);
This will create a new DefaultPartBodyStreamStorageFactory each time. DefaultPartBodyStreamStorageFactory constructor will call File.exists, this could be "slow" on some system. We should have a single instance of DefaultPartBodyStreamStorageFactory and reuse it.
Issue Links: