Super detailed Git learning record

Super detailed Git learning notes The video of Shang Silicon Valley found from station B learned Git, recorded the learning content, and gained a lot Learning address: https://www.bilibili.com/video/BV1vy4y1s7k6?p=11&share_source=copy_web Git introduces distributed version control tools VS centralized version control tools What is ...

Added by Garcia on Sat, 15 Jan 2022 15:23:17 +0200

Starting from "0", self-study the spring framework - springIOC foundation

catalogue 1, Load profile 1.1 relative position 2. Absolute position 3. Multiple configuration files - transfer multiple file names 4. Multiple configuration files - the total configuration file is import ed 2, Instantiation of bean objects 2.1 constructor instantiation 2. Static factory instantiation 3. Example chemical plant 3, IOC ...

Added by blen on Sat, 15 Jan 2022 05:56:35 +0200

Array simulated queue and the implementation of simulated ring queue

Queue is a first in first out ordered list, which can be realized by array or linked list (for example, Bank Queuing System) prerequisite: maxSize: queue capacity (length of array) arr: array of simulated queues front: points to the previous element of the queue header element, with an initial value of - 1 rear: refers to the element at th ...

Added by CPInteract on Sun, 09 Jan 2022 16:28:55 +0200

Flowable actual combat 1 - start the first complete process

1, Preface:  I found that the information about Flowable on the Internet is basically superficial, and there are few instructions on how to build an enterprise level process application, so I wrote a practical series, hoping to be helpful to everyone and myself.2, Meet Flowable  Flowable is a lightweight business process engine writte ...

Added by mac25 on Fri, 07 Jan 2022 12:27:09 +0200

Java programming experiment class II and object

1, Experiment purpose and requirements 1. Experimental purpose Master how to use classes to create and encapsulate objects;Master how to define and construct a class;Master method overload and polymorphism;Master the combination of objects and the method of parameter value transfer;Understand and master the differences between class varia ...

Added by Roberto on Mon, 03 Jan 2022 19:47:54 +0200

God perspective JAVA - Basic 08 - category 06 [2021-08-07]

1. Abstract classes and methods When we talked about polymorphism earlier, we talked about when the Animal class is inherited by Cat class and Dog class. Suppose Pig class and Bird class inherit again... These classes, which are a little more specific than the Animal class Animal, inherit the Animal class. The Animal class has a speak method, ...

Added by kuma on Fri, 31 Dec 2021 01:18:11 +0200

leetcode brush notes (continuously updated...)

1. Algorithm 1.1 dynamic planning 1.1. 1 simple topic 53. Maximum subsequence sum Given an integer array nums, find a continuous sub array with the largest sum (the sub array contains at least one element) and return its maximum sum. Method 1 /* Use f(i) to represent the "maximum sum of continuous subarrays" ending with the ...

Added by mfos on Thu, 30 Dec 2021 17:35:53 +0200

Java implementation of simple static dynamic http server

Write static dynamic http server Use case diagram: Implementation requirements: The purpose of implementing static dynamic server is to better understand the HTTP protocol and the underlying native principle of Servlet. Implementation description: The user submits an http request to the startup port of the specified server through th ...

Added by sametch on Sat, 25 Dec 2021 04:12:37 +0200

Five ways to connect to a database

Tip: After the article is written, the catalog can be generated automatically, how to generate the help document to the right JDBC: Five ways to get a database connection Before we can get a database connection, we need to do some preparatory work: Import database connection related database drivers (also known as third-party api) into pro ...

Added by robogenus on Tue, 21 Dec 2021 18:38:28 +0200

Apache Dubbo basic usage

Distributed RPC framework Apache Dubbo Introduction to Dubbo Apache Dubbo is a high-performance Java RPC framework. Its predecessor is Alibaba's open source and lightweight open source Java RPC framework, which can be seamlessly integrated with the Spring framework. In 2018, Alibaba donated this framework to the apache foundation. What is RP ...

Added by serious1234 on Mon, 20 Dec 2021 17:52:14 +0200