Home  >  Article  >  Java  >  What does tomcat run on jsp?

What does tomcat run on jsp?

little bottle
little bottleOriginal
2019-05-23 14:07:174266browse

Tomcat is the platform on which jsp runs. JSP is a java server page; Tomcat server is a free open source web application server. It is a lightweight application server. It is commonly used in small and medium-sized systems and situations where there are not many concurrent access users. It is used to develop and debug JSP programs. first choice.

What does tomcat run on jsp?

#JSP is a java server page. Tomcat server is a free and open source web application server, which is a lightweight application server. Tomcat is the running platform for jsp and servlet.

1. The full name of JSP is Java Server Pages, and its Chinese name is java server page. It is basically a simplified Servlet design.

It is a dynamic web page technology standard initiated by Sun Microsystems and established by many companies.

JSP technology is somewhat similar to ASP technology. It inserts Java program segments (Scriptlet) and JSP tags into traditional web page HTML (a subset of standard universal markup language) files (*.htm, *.html) (tag), thus forming a JSP file with the suffix (*.jsp).

Web applications developed with JSP are cross-platform and can run under Linux as well as other operating systems.

2.Tomcat server is a free and open source web application server, which is a lightweight application server.

is commonly used in small and medium-sized systems and situations where there are not many concurrent access users. is the first choice for developing and debugging JSP programs.

For a beginner, you can think of it this way. When the Apache server is configured on a machine, it can be used to respond to access requests for HTML (an application under Standard Universal Markup Language) pages. .

Actually Tomcat is an extension of the Apache server, but it runs independently when running, so when you run tomcat, it actually runs as a separate process from Apache.

The above is the detailed content of What does tomcat run on jsp?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn