What are the advantages in the use of spring for application development?



What are the advantages in the use of spring for application development?..

Answer / Kapil Verma

Advantages of using Spring for application development include its modularity, ease of testing, robust transaction management, excellent support for AOP (Aspect Oriented Programming), and the ability to integrate with other technologies easily.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More J2EE Interview Questions

Write a program to display numeric value in reverse order. Ex: I have given a number like 7584, It should display in reverse order like 4857.

6 Answers  


What is the container?

1 Answers  


What is mean by connection pooling?

1 Answers  


Which package is imported by default in java?

1 Answers  


What is content?

1 Answers  


What is javafx java?

1 Answers  


What is instance in java?

1 Answers  


What is attribute what is asant?

1 Answers  


What is business logic?

1 Answers  


What are the components of J2EE application?

1 Answers  


How to call main class with in main class?

2 Answers   IBM, Infosys,


Whats the O/p of the below code snippet ? And explain how does it imply the concept of call-by-value/call-by reference. (PS : Pls ignore syntax errors) public class One { public oneA(){ sop ("Into One--");} } public class Two extends One{ public twoT(){ sop ("Into Two--"); } } public class Home { One a; Two t; public static void main(argv[]) { sop ("In Home--"); sop(a.oneA()); sop(t.oneA()); sop(a.twoT()); sop(t.twoT()); } }

4 Answers   Wipro,


Categories