adspace


Does spring bean provide thread safety?

Answer Posted / Yamuna Kumar Nirala

By default, Spring Beans are not thread-safe. However, you can configure beans to be singleton (single instance per Spring container) to ensure thread safety. If a bean is marked as @Singleton, multiple threads will use the same instance, thus sharing state.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is difference between @controller and @restcontroller in spring?

556


What is lazy class?

490


How can you inject java collection in spring?

518