In the actual battle of MySQL, the experience of using Insert statement is summarized, and Java development starts from scratch

======================================================================= []( )2-1. Three treatment methods []( )2-1-1. Single loop insertion We take 10w pieces of data for some tests. If the insertion method is program traversal loop, insert one by one. It is detected that the speed of inserting a message on mysql is between 0.01s and 0.0 ...

Posted by tmswenson on Thu, 09 Sep 2021 14:47:19 -0700

Using the plug-in mechanism of Hystrix, the world's hottest programmer learning route

Find expansion port Take a closer look and see when the thread pool was created? The entry is shown in the figure below. Each time a new HystrixCommand is created, the constructor of the parent class will be called: As shown in the figure above, the initThreadPool will create a thread pool. It should be noted that the first argument here, ...

Posted by tcarnes on Wed, 08 Sep 2021 13:41:13 -0700

[vernacular design pattern, uncover secrets

problem Suppose you are developing a logistics management application. The original version could only handle truck transportation, so most of the code was in a class called truck. After a while, this app became extremely popular. You can receive more than ten requests from shipping companies every day, hoping that the application can su ...

Posted by Xyphon on Mon, 06 Sep 2021 19:16:29 -0700

[source code analysis and design mode 2, heavy message

Like the factory method mode, the abstract factory mode is also composed of four elements: abstract factory, concrete factory, abstract product and concrete product. However, the number of methods in the abstract factory is different, so is the number of abstract products. The main roles of the abstract factory pattern are as follows: 1. Abst ...

Posted by tecdesign on Mon, 06 Sep 2021 17:44:24 -0700

[source code analysis and design pattern] 102021 is a significant year

The Adapter pattern converts the interface of a class into another interface that the customer wants. So that those classes that could not work together due to interface incompatibility can work together. The adapter pattern has two different forms: class adapter and object adapter. 2, Structure of adapter mode 1. Target Define a specific ...

Posted by andre_c on Mon, 06 Sep 2021 13:10:21 -0700

Spring MVC framework technology summary, Java learning route guide

@Controller public class UserController { @RequestMapping(value = "/users",method = RequestMethod.POST) public String insertUsers(@RequestBody List<User> users){ System.out.println("insertUsers"); System.out.println(users); return "/success.jsp"; } } 3.2.4 summary 🔥 If there are curly braces outsid ...

Posted by al3x8730 on Sun, 05 Sep 2021 20:24:36 -0700

Spring MVC reviews the old and knows the new – from scratch, the mind map + core + architecture allows you to reach your goal in one step

1: The user initiates a request, which will be intercepted by the front-end controller (dispatcher servlet) 2: The front-end controller (dispatcher servlet) requests the Handler mapping to find the Handler 3: The Handler mapping finds the corresponding Handler (which can be more annotated or XML configured) according to the configuration. It ...

Posted by kmussel on Sun, 05 Sep 2021 19:01:16 -0700

â‘  , jQuery, massive algorithm, high-frequency interview question compilation and analysis

Create a new jquery.min.js file in vs (any name here, as long as it is a JS file) Import in html file <script src = "jquery.min.js"></script> 1.2. jQuery entry function 🔥 // The first method is recommended $(function(){ ... // This is the entrance to the completion of page DOM loading }) // The second ...

Posted by bryan52803 on Sun, 05 Sep 2021 13:06:53 -0700

[summary of Java Web basics about encapsulation

This bad smell results when implementation changes are not encapsulated in abstractions and hierarchies. The forms are usually as follows: The client program is closely coupled with the service variants it needs. Whenever it needs to support new variants or modify existing variants, it will affect the client program. Whenever new variants n ...

Posted by ta2 on Sun, 05 Sep 2021 09:40:12 -0700

[Redis 1] overview of Redis basic knowledge, mars Java tutorial, baidu online disk

(1) Is business data commonly used? What is the utilization rate? If utilization is low, there is no need to write to the cache. (2) Does the business have many read operations or write operations? If there are many write operations and the database needs to be written frequently, there is no need to use cache. (3) What is the size of bu ...

Posted by infini on Fri, 03 Sep 2021 23:35:06 -0700