The three major jsp frameworks are: 1. struts; 2. hibernate; 3. spring. Struts acts as the view layer and controller, hibernate allows us to operate the database in an object-oriented manner, and spring reduces the coupling between the layers.
jsp is used to write java dynamic pages. It can be regarded as a language. The pages written by it are eventually compiled into servlets for execution. It is hard to say what framework, generally They all talk about java framework.
(Video tutorial recommendation: java course)
So what are the three major jsp frameworks?
The three major Java frameworks are used to develop web applications.
1.Struts: Based on MVC, it acts as the view layer and controller;
2.Hibernate: for persistence, lightweight encapsulation of JDBC, allowing us to operate the database in an object-oriented manner;
3.Spring: using the control inversion technology to manage beans, reducing the cost Coupling between layers.
Recommended related tutorials: java introductory tutorial
The above is the detailed content of What are the three major jsp frameworks?. For more information, please follow other related articles on the PHP Chinese website!