InterviewSolution
| 1. |
What Are The Types Of The Transaction Management Spring Supports? |
|
Answer» Spring supports two types of transaction management: PROGRAMMATIC transaction management: This means that you have managed the transaction with the help of PROGRAMMING. That gives you extreme flexibility, but it is difficult to maintain. Declarative transaction management: This means you SEPARATE transaction management from the business code. You only USE annotations or XML based configuration to manage the transactions. Spring supports two types of transaction management: Programmatic transaction management: This means that you have managed the transaction with the help of programming. That gives you extreme flexibility, but it is difficult to maintain. Declarative transaction management: This means you separate transaction management from the business code. You only use annotations or XML based configuration to manage the transactions. |
|