List of Java Collection Source Analysis: ArrayList_A Little Classroom (Multi-shore College)

With so much preparation, we finally got to ArrayList, which is our most frequently used collection class. Let's first look at how the document describes it: Resizable-array implementation of the List interface. Implements all optional list operations, and permits all elements, including null. In addition to implementing the List interface, ...

Added by KashKurcura on Tue, 10 Sep 2019 07:58:03 +0300

Super Interface for Java Collection Source Analysis: Collection_1 Classroom (Multi-shore College)

Collection Collection is a superset of List, Queue and Set, which is directly inherited from Iterable, that is, all Collection collection classes support for-each loop. In addition, Collection is also a model of Interface-oriented programming, through which it can transform between classes, which is also one of the charms of object-oriented pro ...

Added by FillePille on Tue, 10 Sep 2019 07:49:23 +0300

Alibaba Arthas version 3.1.2 release: add logger;/heapdump/vmoption command, support tunnel server

Arthas is an open source Java diagnostic tool for Alibaba and is loved by developers. Github: https://github.com/alibaba/arthas File: https://alibaba.github.io/arthas Arthas 3.1.2 continues to add new features, highlighted below: logger/heapdump/vmoption/stop command Connect arthas from different networks via tunnel server for easy unif ...

Added by walshd on Tue, 10 Sep 2019 05:59:43 +0300

99%SQL optimization encountered in your work, here are all solutions for you

-- Example table CREATE TABLE `employees` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(24) NOT NULL DEFAULT '' COMMENT 'Full name', `age` int(20) NOT NULL DEFAULT '0' COMMENT 'Age', `position` varchar(20) NOT NULL DEFAULT '' COMMENT 'position', `hire_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMEST ...

Added by Snart on Tue, 10 Sep 2019 04:29:34 +0300

201871010134-Summary of Zhou Yingjie's Second Week Study of Object-Oriented Programming (java)

project content Which course does this assignment belong to? https://www.cnblogs.com/nwnu-daizh/ What are the requirements for this assignment? https://www.cnblogs.com/nwnu-daizh/p/11475377.html Target of homework learning Learn and master Java Application program structure; Learn and master the da ...

Added by michalchojno on Mon, 09 Sep 2019 15:58:38 +0300

java Concurrent programming-Executor framework

Links to the original text: https://my.oschina.net/u/249393/blog/268066 Executor framework refers to a series of functions related to executor in concurrent libraries int ...

Added by collette on Mon, 09 Sep 2019 11:14:00 +0300

Distributed Technology--ZooKeeper's Comprehensive Exercise

Hello, friends. I'm here again. Share Zookeeper's comprehensive exercise with you this time!!! It's a summary of learning zookeeper these days.      Learn together and make progress together. Continue to precipitate, slowly strong. I hope this article will be helpful to you. If there is something wrong with it, please comment on it. Shortly ...

Added by djpeterlewis on Mon, 09 Sep 2019 08:00:39 +0300

How can Swagger2 be used to quickly build API documents in SpringBoot?

Simple use of Swagger2 1. Dependencies needed to import Swagger2 <!--Add to Swagger rely on --> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.8.0</version> </dependency> <!--Add to Swagger-UI rely on --> <dependency&g ...

Added by Whetto on Sun, 08 Sep 2019 07:53:14 +0300

Revealing Spring Cyclic Dependencies for Springboot Source Analysis

Summary: If you are an experienced programmer, you will inevitably encounter this phenomenon in your development: transactions do not take effect.Perhaps some of your little buddies will be astonished just after talking about this.Didn't Spring solve the problem of circular dependency, and how did it happen?Let's now uncover the most fundamenta ...

Added by mattbarber on Sun, 08 Sep 2019 07:43:37 +0300

Spring-BeanFactory Source Code Analysis

Formally into the Spring source code analysis module, for the huge project of spring, if a little bit of complete analysis is very difficult, for the application framework, I prefer to master ideas or design, rather than remember the code, for the fi ...

Added by thehigherentity on Sat, 07 Sep 2019 10:30:28 +0300