[JavaSE series] generics and wildcards in Java
⭐ ♪ previous words ⭐ ️
This article introduces you to Java syntax - generics and wildcards. Generics and wildcards are very abstract concepts. In short, both can pass types as "parameters". However, generics are used when you know what type to pass in, while wildcards are used when you are not sure what type to pass in, This articl ...
Posted by onekoolman on Mon, 28 Feb 2022 11:07:54 +0100
Set frame learning
Set frame diagram
Note: the dotted line corresponds to the interface and the solid line corresponds to the implementation class
Top level interfaces: Collection and Map
Interface is to provide methods The Collection interface indicates that the stored data is a Collection composed of single data; The Map interface represents a collection of ...
Posted by Lerris on Mon, 28 Feb 2022 10:22:34 +0100
Dom4j user manual
1, Use of Dom4j
1. Introduction to XML parsing
There are two common XML parsing methods in daily development
DOM: the parser is required to load the entire XML file into memory and generate a Document object. Advantages: the structure and relationship between elements are preserved, and you can add, delete, check and modify elements. Dis ...
Posted by flumpy on Mon, 28 Feb 2022 08:50:59 +0100
Spring Cloud Gateway filter factory
SpringCloudAlibaba+Nacos integration Gateway Spring cloud gateway combined with Sentienl to implement gateway current limiting mechanism Instructions for use of various types of predicates built in Spring Cloud Gateway
Routing filters allow you to modify incoming HTTP requests or outgoing HTTP responses in some way. The scope of the route ...
Posted by ccx004 on Mon, 28 Feb 2022 07:09:39 +0100
this and static
static: 1. Static is translated as "static" 2. All static keywords are class related and class level 3. All static modifications adopt "class name." Access by 4. Static modified variable: static variable 5. Static modification method: static method
Classification of variables: Variables are divided according to the declare ...
Posted by GBahle on Mon, 28 Feb 2022 06:58:01 +0100
Java Web from introduction to actual combat
Personal homepage: Hello Code. This column: Java Web from introduction to actual combat It is long and not finished, and the follow-up content will be continuously updated This article will also be published in sections for your convenience If you don't have Java foundation, please go first Java zero foundation guide Column learning correspondi ...
Posted by bookchiq on Mon, 28 Feb 2022 06:41:49 +0100
Three hundred lines of Java per day (08 days, code implementation of matrix multiplication)
Three hundred lines of Java per day (08 days, code implementation of matrix multiplication)
Note: here are the synchronous notes and records of JAVA self-study and understanding. If you have any questions, please correct them
1, Connotation of matrix multiplication
First, we need to have a basic understanding of matrix multiplication. A ...
Posted by direction on Mon, 28 Feb 2022 06:24:48 +0100
Do you know the most complete Spring dependency injection method?
prefaceSpring, just as its name, brings spring to developers. Spring is a framework designed to solve the complexity of enterprise application development. Its design concept is to simplify development.The core idea of Spring framework is:IOC (inversion of control): that is, transfer the control of creating objects, and transfer the control of ...
Posted by cheekydump on Mon, 28 Feb 2022 02:51:24 +0100
[java learning path] (javaWeb [back end] Chapter) 002 Servlet
Chapter 1 Introduction to Servlet
1. Learning objectives
Understanding Web resources Understand the concept of Servlet Master the function of Servlet Master the XML configuration of Servlet Understand the annotation mode configuration of Servlet
2. Content explanation
2.1 concept of web resources
Web resources are resources running o ...
Posted by ProblemHelpPlease on Mon, 28 Feb 2022 01:35:14 +0100
Spring Mvc Series Note 9 - Spring MVC Interceptor
SpringMVC Interceptor
Interceptor for Spring MVC is similar to Filter for Servlet. It is mainly used to intercept user's requests and handle them accordingly. It is often used for privilege validation, logging request information, determining whether user is logged in, etc.
Differences between interceptors and filters
Interceptor SpringMVC c ...
Posted by GravityFX on Sun, 27 Feb 2022 18:03:28 +0100