I have refered these links but still has doubt
concurrent request to singleton bean
another less relevant link
My Q/doubt : Will the parallel requests be processed parallel/sequential by one Spring singleton bean[as this is only one object/instance] e.g. @Controller, @Service even on multi-core processor(parallel thread execution capability)
Hopefully not, but then how it works.
From the first link, I got some understanding - one singleton bean object, one instance of byte code of this singeton bean - which is accessed by thread stack independently - but not able to corelate