classification
boutiqueSharing tips for java enumeration
1. Introduction Java enumerations are very useful in development. Today, let's analyze a few tips and answer some students 'questions...
Free boutiquePrinciples of Java Code Generator
1. Foreword I wrote an article about the Mybatis Plus code generator a few days ago, and many students privately asked me about this code...
Free boutiqueDetailed usage guide for the Java 8 Stream API
1. overview
An important feature introduced by Java 8 is undoubtedly the Stream API. Stream translates as "stream"...
Free boutiqueInterpretation of the 2020 JVM Ecosystem Report
1. Foreword The 2020 JVM Ecosystem Report has been released. The report was produced by British software security service provider Snyk and Ora...
Free boutiqueMap and flatMap operations in Java 8 Stream Api
1. preface
Java 8 provides a very easy-to-use Stream API that makes it easy to manipulate collections. Today we come...
Free boutiqueFrom Java 9 to Java 17 to Java 11
Java 11 is another LTS version since Java 8 and is currently one of the most used LTS versions in the world. Today I...
Free boutiqueJava random number traps
preface
We should be familiar with random numbers. We use them to generate Captcha in business, or we have low requirements for repeatability...
Free boutiqueSharing some practical skills for Java ServletRequest
1. preface
ServletRequest is a Servlet Api that we often come into contact with when working on Java Web. Sometimes I...
Free boutiqueJava enumerates implement state machines to streamline your state change logic
preface
I believe that many java developers have written about status changes, such as order processes, leave processes, etc. Generally...
Free boutiqueFutureTask in Java
1. The previous article in the preface briefly introduced the Future interface in Java, leaving a hole. I will make up for it today...
Free boutiqueFrom Java 9 to Java 17 to Java 10
In the previous article, we reviewed some features of Java 9, and today we will take a look at what features Java 10 brings...
Free boutiqueJava Development Tips: Reduce the Use of Magic Points
1. Preface When refactoring old code, I encountered similar writing:
public void attend(String value)...
Free