0 votes
in Spring by
Which of the following is NOT a function of the Spring IOC container?

a) Dependency management

b) Transaction management

c) Bean lifecycle management

d) Aspect-Oriented Programming support

1 Answer

0 votes
by
b) Transaction management

Explanation:

While Spring does provide transaction management support, it is not the responsibility of the IOC container. The IOC container is mainly concerned with managing bean instantiation, dependencies, and lifecycle.
...