Handwritten springioc (read configuration information of bean)

Let's start with the idea: read a configuration file in the form of a stream, parse and encapsulate the information in the stream into a MAP1 < string, BeanDefinition >. BeanDefinition contains the attribute information of the configuration file, build a factory, store the built bean object into another MAP2 < string, Object > by re ...

Posted by vaaaska on Fri, 22 Nov 2019 08:45:57 -0800

Database Introduction and MySQL Version 5.7 Compile Installation (Actual!)

Basic concepts of databases Data: Symbolic records describing things are called data. Include numbers, text, graphics, images, sounds, file records, etc. Store in a uniform format as a "record". Table: A table is formed by grouping different records together Is used to store specific data Database: A database is a collection of ...

Posted by fri3ndly on Thu, 21 Nov 2019 18:20:54 -0800

python-selenum3 day 6 - WebDriver common API s

1. Loop through all drop-down list values2. Radio drop-down list3. Selection and cancellation of multi selection list4. Operate the radio box, multi box, assert and select all5. Assert keywords in page source code6. screenshots7. Drag page elements 1. Loop through all drop-down list values <!--Practicing html--> //Education back ...

Posted by pillot1005 on Wed, 20 Nov 2019 12:24:42 -0800

filter effect of CSS3

Filter is mainly used in pictures to achieve some special effects. (although they can also be used in video), we only discuss the use of pictures. -Webkit filter is an attribute of css3. Webkit takes the lead in supporting these functions. It feels that the effect is very good. Let's learn about the filter property. Now the ef ...

Posted by tready29483 on Wed, 20 Nov 2019 07:33:42 -0800

Source code analysis of Vue view update patch process

In this article Deep source learning Vue responsive principle This article explains how Vue informs the data that depends on it to update when the data changes. The point of this article is: the view knows the change of the dependent data, but how to update the view. Vnode Tree There is a DOM tree corresponding to it in real HTML, and a similar ...

Posted by Averice on Tue, 19 Nov 2019 05:24:02 -0800

The eighth day of FRR learning -- Distributed symmetric gateway

Distributed symmetric gateway spine configuration bgp evpn configuration router bgp 7677 bgp router-id 192.168.59.130 bgp bestpath as-path multipath-relax neighbor fabric peer-group neighbor fabric remote-as external neighbor 192.168.59.128 peer-group fabric neighbor 192.168.59.129 peer-group fabric ! address-family l2vpn evpn neighb ...

Posted by Bunkermaster on Tue, 19 Nov 2019 01:26:44 -0800

ThreadPoolExecutor Thread Pool Source Code Analysis

Foreword (must see here!!) I'm sure you know the process of thread pool execution, but how do you configure thread size, how do you really use it, and how do you configure it reasonably with quantified metrics?This article will analyze the implementation of thread pools from the source code point of view and show how thread pools are quantified ...

Posted by johnska7 on Mon, 18 Nov 2019 18:08:39 -0800

03 mybatis interceptor mechanism

Catalog Introduction to MyBatis interceptor Use of interceptors Introduction and configuration of interceptor Source code analysis summary Reprinted from Research on the principle of MyBatis interceptor Introduction to MyBatis interceptor MyBatis provides a plug-in function. Alt ...

Posted by phpnoobguy on Mon, 18 Nov 2019 01:05:42 -0800

Web front end Foundation (10):JavaScript

1. Pseudo array arguments Arguments represent arguments. One particular thing is that arguments are only used in functions. 1.1 number of return parameters Return the number of function arguments: arguments.length Example: fn(2,4); fn(2,4,6); fn(2,4,6,8); function fn(a,b,c) { console.log(arguments); console.log(fn.length); //G ...

Posted by devdavad on Mon, 18 Nov 2019 01:05:35 -0800

Several practical functions of FreeSql v0.11

FreeSql has been open source for nearly a year, and is determined to become a convenient and easy-to-use ORM for. Net platform. Warehouse address: https://github.com/2881099/FreeSql With the continuous iterative updating, it becomes more and more stable and powerful. It is expected to release the official version of 1.0 on the first anniversary ...

Posted by LApprenti Sorcier on Mon, 18 Nov 2019 00:06:48 -0800