0 votes
in Spring by

What does the 'prototype' scope mean for a Spring bean?

a) Single instance per Spring container

b) New instance every time it's requested

c) Shared instance for a single HTTP request

d) Shared instance for a single HTTP session

Click to View Answer and Explanation

1 Answer

0 votes
by
b) New instance every time it's requested

Explanation:

'prototype' scope in Spring means a new bean instance will be created every time it is requested from the container.
...