When opening the Editor the first time after server start there are multiple requests incoming at the same time as all graphics need to be loaded.
At this time a file system needs to be created to read data from jar. This must only happen once but due to race conditions on a static method, more than one request is trying to create it which fails for the most.
TODO
Trigger FileSystem creation during server start. And remove it from ResourceServiceImpl.
When opening the Editor the first time after server start there are multiple requests incoming at the same time as all graphics need to be loaded. At this time a file system needs to be created to read data from jar. This must only happen once but due to race conditions on a static method, more than one request is trying to create it which fails for the most.
TODO
ResourceServiceImpl
.