Brother Song wrote an article earlier and talked to everyone about the new thing AOT introduced in Spring 6 (see Spring Boot 3 new gameplay, AOT […]
Month: January 2024
Spring Boot integrates Postgres to implement lightweight full-text search
There is a requirement for a user interface with a search function: The search process is as follows: This requirement involves two entities: Features that […]
About React19, what you need to know about the causes and consequences
Hello everyone, I am Casson. ReactThe current stable version is 18.2, which was released in June 22. After that, no new stable version was released. […]
Implement dynamic import natively in React Native
In the React Native community, native dynamic import has been a long-awaited feature. Before the release of React Native 0.72, dynamic import could only be […]
New array grouping method for JavaScript
Grouping items in an array is something you’ve probably done many times. Either manually write a grouping function each time, or use lodashthe ‘s groupByfunction. The good […]
In-depth analysis of the application of Java class attributes and class methods
Java class attributes Java class attributes, also known as fields, are variables in a class. They are used to store class-related data. Create class attributes […]
Handwrite a simple shortcut library using JavaScript
background In front-end development, sometimes projects will encounter some shortcut key requirements, such as binding shortcut keys, displaying shortcut keys, editing shortcut keys, etc., especially […]
Modern CSS solution: accent-color accent color
accent-colorIt is a not too new property that has been supported since Chrome 93. I haven’t introduced this property properly before. It wasn’t until recently […]
JavaScript structuredClone modern deep copy
There are many ways to implement deep copy in JavaScript, each with its own advantages and disadvantages. Today we introduce an implementation of deep copy […]