Best practices for spring boot profiles, privacy data desensitization!

The company is investigating the internal data account leakage these days. The reason is that it is found that some interns xiaocute secretly transmitted the source code to GitHub with their account and password, resulting in the leakage of core data. The children still haven't been severely beaten by the society. The consequences of this can b ...

Posted by ranjita on Tue, 21 Dec 2021 00:57:07 +0100

Java collection interview questions sorting, [performance optimization practice]

Differences between HashMap and ConcurrentHashMap ConcurrentHashMap divides the whole bucket array into segments, and then protects each segment with a lock lock. Compared with the synchronized lock of HashTable, the granularity of the lock is finer and the concurrency performance is better. However, HashMap has no lock mechanism and is not t ...

Posted by Matt Kindig on Mon, 20 Dec 2021 22:27:08 +0100

❤ Summary of high frequency algorithm questions for Internet factory interview ❤ ️ —— ❤ ⒋ two point special session ❤ ️

1. Foreword Binary Search, also known as Binary Search, is an efficient search method, which can complete the search within the logarithmic time complexity of data scale. Binary Search can be applied to arrays because arrays have the characteristics of random access and arrays are orderly. The mathematical idea of Binary Search is "re ...

Posted by nev25 on Mon, 20 Dec 2021 16:04:03 +0100

Basic data structure: P2 5 - application example -- > polynomial multiplication and addition - C implementation

This series of articles is the study notes of data structure of Chen Yue and he Qinming of Zhejiang University. The links of the previous series of articles are as follows: Fundamentals of data structure: P1 - Basic Concepts Basic data structure: P2 1 - linear structure - > linear table Basic data structure: P2 2-linear structure - > stac ...

Posted by halex on Mon, 20 Dec 2021 11:55:35 +0100

Collect this 20000 word summary, ❤️ Docker ❤️ This piece is guaranteed to be pinched to death. Jesus can't do what I said

⭐ Welcome to subscribe Interview raids in big factories Column, interview the high-frequency interview knowledge summarized by more than 10 large factories. In the free stage, please subscribe quickly ⭐More introduction to boutique columns can be found here ⭐ For more java interview learning materials, please send a private letter to &quot ...

Posted by 182x on Mon, 20 Dec 2021 05:56:42 +0100

[suggestions collection] 25 + regular interview questions are analyzed in detail, so that you can easily pass the regular interview and write 2000 lines of code less

preface Digital thousandth division, 3-3-4 format splicing of mobile phone number, implementation of trim function, HTML escape, obtaining url query parameters... Do you often encounter them in interviews and work? Let's see how to catch them all with regular!!! 1. Division of thousands of digital prices Change 123456789 to 123456789 I ...

Posted by baranwalpk on Mon, 20 Dec 2021 05:18:56 +0100

Spring IOC container - Bean management - super detailed explanation based on XML!!!

Spring IOC container - Bean management - based on XML 🎈🎈🎈 Spring framework overview Spring is a lightweight open source Java EE frameworkSpring can solve the complexity of enterprise application developmentSpring has two core parts: IOC and AOP IOC: inversion of control, leaving the process of creating objects to Spring for manageme ...

Posted by benracer on Sun, 19 Dec 2021 22:09:34 +0100

LeetCode interview hot question 6

101. Symmetric binary tree Given a binary tree, check whether it is mirror symmetric. For example, a binary tree [1,2,2,3,4,4,3] is symmetric. 1 / \ 2 2 / \ / \ 3 4 4 3 Method 1: recursion Problem solving idea: recurse the left and right subtrees and judge whether they are equal. public boolean isSymmetric(TreeNode root) ...

Posted by bradkenyon on Sun, 19 Dec 2021 11:10:20 +0100

Detailed explanation of Java Web paging function, those routines of Java interview in recent years

Usage scenario: when the amount of data fetched reaches a certain level, paging is required for data segmentation. When we do not use the paging function, we will face many problems: Problems with the client: if too much data is displayed on the same page, the user experience will be seriously affected because the page is too long, it is ...

Posted by Desertwar on Sun, 19 Dec 2021 07:00:52 +0100

Analysis and implementation of window TopN

Statement: this series of blogs is compiled according to SGG's videos, which is very suitable for you to learn. Some articles are collected by crawlers and other technical means in order to learn and share. If there is a copyright problem, please leave a message and delete it at any time. The latest version of big data interview questions in 2 ...

Posted by pbaker on Sat, 18 Dec 2021 23:24:22 +0100