Java web core knowledge

Introduction to Java Web Web: global wide area network, also known as the world wide web (www), a website that can be accessed through a browser. JavaWeb: use Java technology to solve the technology stack in the field of web and Internet. B/S architecture: Browser/Server architecture mode. Its feature is that the client only needs a browser ...

Added by running_out_of_imagination on Sun, 27 Feb 2022 10:18:05 +0200

Build K3s cluster step by step based on Rocky Linux

Introduction to K3SK3s is a lightweight Kubernetes distribution. It is an open source application for managing containerization on multiple hosts in the cloud platform. Because it is only half the size of Kubernetes in terms of memory occupation, it is abbreviated as k3s.In this article, I will show how to build K3S service cluster based on Roc ...

Added by mburkwit on Sat, 26 Feb 2022 17:09:01 +0200

Form tags of HTML common tags

Form tags of HTML common tags preface1, Form field2, Form element 1.input form elements2.select drop-down form elements3.textarea form element preface In web pages, we need to interact with users and collect user data. At this time, we need to use form labels In HTML, a complete form is usually composed of three parts: form field, form ...

Added by Harsh on Sat, 26 Feb 2022 08:48:07 +0200

nginx source code analysis -- master and worker process model

1, Overall architecture of Nginx nginx in normal execution will have multiple processes. The most basic processes are master process (monitoring process, also known as main process) and woker process (working process), and possibly cache related processes. A relatively complete overall frame structure is shown in the figure: 2, Core proces ...

Added by Sulphy on Sat, 26 Feb 2022 08:17:12 +0200

Some summaries of knowledge about volume/partition in Linux

Write before Share some knowledge about storage on Linux with your buddiesThis part of things is almost useless, but it needs a clear definitionThe article covers: Linux file storage, LVM-related conceptsFormat partitions using the Linxu file system, mount partitionsAdjust logical volumes, add swap partitions, etc. Actual DemoThe followin ...

Added by fonster_mox on Fri, 25 Feb 2022 19:11:56 +0200

Spring MVC realizes file upload and download

File upload is one of the most common functions in project development. Spring MVC can well support file upload, but MultipartResolver is not installed in the context of spring MVC by default, so it cannot handle file upload by default. If you want to use spring's file upload function, you need to configure MultipartResolver in the context. Fr ...

Added by eflopez on Fri, 25 Feb 2022 18:59:23 +0200

Packet capture analysis of pop3 by Wireshark

This paper mainly uses Wireshark to analyze the process of receiving e-mail by using POP3 protocol, and uses telnet command for simple operation. 1. POP3 introduction Post Office Protocol (English: Post Office Protocol, abbreviation: pop) is a member of TCP/IP protocol family and is defined by RFC 1939. This protocol is mainly used to suppo ...

Added by benzrf on Fri, 25 Feb 2022 11:35:18 +0200

Servlet life cycle (code + diagram)

After reading some articles on the Internet, I feel that it is too theoretical. Now let's briefly talk about the life cycle of Servlet, and then verify it with code. When the browser accesses the server, the server parses the url. If the browser does not want static resources, the server accesses the corresponding Servlet according to the URI. ...

Added by ginoitalo on Thu, 24 Feb 2022 17:38:24 +0200

java official website tutorial (server)

Concurrency - the Java platform has APIs to help you develop multithreaded programs Computer users take it for granted that their system can do more than one thing at a time. They assume that they can continue to work in the word processor, while other applications download files, manage print queues, and stream audio. Even a single applicatio ...

Added by TheUnknown on Thu, 24 Feb 2022 16:12:15 +0200

VLAN and layer 3 switch

Daily share: Any restriction starts from your heart. 1, Concept and advantages of VLAN 1. Split broadcast domain 1) Physical segmentation: divide the network into several small networks physically, and then connect different networks with routing equipment that can isolate broadcasting to realize communication. 2) Logical segmentatio ...

Added by erika_web on Thu, 24 Feb 2022 07:22:41 +0200