#What is jsp after the front and back ends are separated?
Jsp belongs to front-end or back-end?
jsp executes web components in the service and separates the logic of the web page from the structure of the web page. The fundamental purpose is to separate the logic from the servlet. The essence of jsp is a servlet, and servlet is a server-side java application. That is to say, jsp should belong to the back end. However, in the MVC layering, jsp belongs to view. Currently, jsp is mostly used for data and page display, not for logical processing. Generally speaking, jsp is a back-end technology, but it is more practical in application. Belongs to the front end. JSP is a scripting language, and JSP provides simple tags and jsp tags to execute web page effects. Many people also understand that embedding Java code in HTML is jsp. The above is the complete introduction to whether jsp is front-end or back-end. If you want to know more aboutJSP video tutorial, please pay attention to php Chinese website.
The above is the detailed content of Is jsp front-end or back-end?. For more information, please follow other related articles on the PHP Chinese website!