Tomcat source code learning -- request data transmission

This paper introduces the default BIO mode based on tomcat7 As mentioned before, tomcat is transmitted through socket Interface request path send data Most HTTP requests are usually long connections, which can be seen from the HTTP request header Generally, a socket connection will be established before sending an HTTP request. If tomcat j ...

Added by jp2php on Fri, 24 Dec 2021 07:11:05 +0200

Tomcat installation and use

Tomcat About Tomcat # What is Tomcat? Tomcat Is a lightweight based Java Free and open source Web The server/Servlet Container. # What can Tomcat do? Deploy your Web engineering, Provide access control services for your web resources. # The origin of the name Tomcat? Tomcat It is a wild cat that does not rely on humans and lives ind ...

Added by galayman on Thu, 23 Dec 2021 15:28:20 +0200

Summary of user information management system

catalogue 1 login 1.1 login interface  1.2 Servlet 2 index interface 3. Add function 3.1 add logic diagram 3.2 code modification  3.3 addUserServlet 4 delete function 4.1 delete logic diagram 4.2 delUserServlrt 5 modification function 5.1 modify logic diagram 5.2 findUserServlet 5.3 udate html page code 5.4 updateUserServlet 6 ...

Added by dhimok on Wed, 22 Dec 2021 08:55:20 +0200

Tomcat deployment and optimization

1, Introduction Tomcat server is a free open source Web application server, which is a lightweight application server, It is widely used in small and medium-sized systems and not many concurrent access users. It is the first choice for developing and debugging JSP programs. For a beginner, you can think that when you configure Apache ser ...

Added by imperialized on Mon, 20 Dec 2021 22:05:34 +0200

Spring MVC detailed summary and analysis

Spring MVC learning Brief introduction to spring MVC framework: Spring MVC is a module of spring framework. Spring MVC and spring do not need to be integrated through the middle integration layer. Spring mvc is a web framework based on mvc. Spring MVC presentation layer: it is convenient for front and back data transmission Spring MVC has a c ...

Added by mallard on Fri, 17 Dec 2021 11:55:55 +0200

Java basic custom control layer framework

Custom control layer framework core file The core file of the control layer framework is xml file, and almost all frameworks use xml file as configuration file. web. As the core file of Java Web, xml will parse the web when the server tomcat starts xml file, read the information of servlet and servlet mapping node, store it in a map set to ...

Added by jeevan_y21 on Fri, 10 Dec 2021 13:49:46 +0200

Servlet - Tomcat installation, simple static resource correspondence, dynamic resource writing specification

Java learning punch in: days 90 and 91 javaWeb —JSP Servelet HTML+CSS and JavaScript were briefly introduced before, but only the interface problem can be solved. At that time, although it was mentioned that JSON can realize front-end and back-end interaction, JavaScript and java interaction, how the submitted form is sent to our ...

Added by Papalex606 on Thu, 09 Dec 2021 18:57:57 +0200

Java web learning notes

Javaweb concept Technology for dynamic web resource development is collectively referred to as Java Web web application web applications: programs that provide browser access For web applications to provide external access: a server is required to unify Tomcat management; web application composition: html,CSS,jsjsp/servletJava Programs ...

Added by Nexus10 on Mon, 06 Dec 2021 04:45:42 +0200

Idea Tomcat Mysql connection

Idea—Tomcat preparation in advance Install the applicable JDK version of TomcatIn the doc window, test Tomcat to ensure that it can be executed normally. Step 1: New Project (I'm used to creating an Empty Project first, and then creating a Module under the Empty Project. This is not necessary, but a habit. You can directly create a non ...

Added by karan23424 on Fri, 03 Dec 2021 18:43:48 +0200

The whole process of Centos 7 installation, configuration and remote connection to mariadb 10.2 under VMware.

1. View the current mariadb version.   rpm -qa |grep mariadb   2. Uninstall the current old version of mariadb and delete the configuration file and directory (version 5.5 does not support dynamic columns).   rm -f /etc/my.cnf       rm -rf /var/lib/mysql/ 3. Add the yum source for mariadb 10.2 and refresh the yum source. vim /e ...

Added by epetoke on Wed, 01 Dec 2021 21:05:03 +0200