Java Agent: channeling

1. Channeling In Naruto, the art of channeling belongs to time and space ninja. So what does "channeling" mean in the Java world? Is to export the class es in the running JVM. The main purpose of this paper is to export the class file from the JVM with the help of Java Agent. 2. Preparation Development environment: JDK version ...

Added by davidppppppppppp on Mon, 07 Mar 2022 13:33:18 +0200

springboot feign is simply combined with hystrix fuse

In terms of interface calls, Spring Cloud will generally go through the cooperation of the following components: Feign - > hystrix - > ribbon - > HTTP client (apache http components or Okhttp), as shown in the following figure: (1) Interfaced request call when calling the interface modified by @ FeignClient annotation, convert the req ...

Added by nick2005 on Mon, 07 Mar 2022 13:17:52 +0200

01Hadoop learning notes - Hadoop cluster construction

1 Introduction 1. What is it Hadoop is an open source software of apache for big data storage and computing. 2. What can I do a big data storage b distributed computing c (computer) resource scheduling 3. Features High performance, low cost, high efficiency and reliability. It is universal and simple to use 4. Version 4.1 open source communi ...

Added by j.bouwers on Mon, 07 Mar 2022 12:52:31 +0200

java OpenCV implementation of scanner image tilt correction

First download the opencv resources on the official website Official website address: Releases - OpenCV The download on the official website is slow. You can choose to download on Baidu online disk. The version is 455 Link: https://pan.baidu.com/s/1LADtih8l8nStKwJRIde91Q   Extraction code: wx0h Tip: the following methods are only appli ...

Added by jmrothermel on Mon, 07 Mar 2022 12:00:56 +0200

Web~Maven foundation - what is Maven? How do I use Maven?

catalogue I What is Maven Maven project file structure: II Maven's configuration file - POM xml III Dependency management 1.maven warehouse 2. In POM Configure dependency in XML file IV Lifecycle and its related commands V Order in which Maven loads dependent packages I What is Maven Maven: project construction tool, packaging tool ...

Added by hvle on Mon, 07 Mar 2022 11:33:31 +0200

Spring boot uses spring's built-in scheduled tasks

Original link https://cloud.tencent.com/developer/article/1582434 1. Preface We often use timed tasks in daily project development. For example, make statistics and settlement in the early morning, start planning activities, automatically change the unpaid orders that exceed 24 hours to cancelled status, and automatically change the orde ...

Added by danoli on Mon, 07 Mar 2022 10:51:20 +0200

registerListeners() of Spring source code and publish subscribe mode

registerListeners() of Spring source code and publish subscribe modeHello, I'm classmate Tian, a programmer.Today, let's explain the registerListeners() method in the refresh() method, which is often referred to as the publish subscribe mode of Spring. This paper first gives an example of publish subscribe mode, then explains the principles of ...

Added by pablocullen on Mon, 07 Mar 2022 10:42:16 +0200

Discussion on ThreadLocal in Java Concurrent Programming

ThreadLocal may be rarely used in the normal development process, but it is indispensable for thread operation. In particular, the communication between threads through Handler is an important part. In this article, I will help you analyze the use and internal principle of ThreadLocal. What is ThreadLocal ThreadLocal is a class about creati ...

Added by dan182skater on Mon, 07 Mar 2022 09:55:10 +0200

registerListeners() of Spring source code and publish subscribe mode

registerListeners() of Spring source code and publish subscribe modeHello, I'm classmate Tian, a programmer.Today, let's explain the registerListeners() method in the refresh() method, which is often referred to as the publish subscribe mode of Spring. This paper first gives an example of publish subscribe mode, then explains the principles of ...

Added by jreed2132 on Mon, 07 Mar 2022 09:45:46 +0200

Java learning journey -- String

This blog will explain the String class in java in detail. Create string Common ways to construct String //Mode 1 String str = "hello"; //Mode 2 String str1 = new String("Hello"); //Mode 3 char[] array = {'a', 'b', 'c'}; String str2 = new String(array); be careful: String literal constants such as "hello" are also of type s ...

Added by o3d on Mon, 07 Mar 2022 09:43:18 +0200