Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
Which of the following is NOT a function of the Spring IOC container?
Home
Spring
Which of the following is NOT a function of the Spring IOC container?
0
votes
asked
Nov 13
in
Spring
by
SakshiSharma
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
spring
ioc
container
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Nov 13
by
SakshiSharma
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.
...