Test Tengine Open Source Dubbo Function

Python WeChat Subscription Applet Course Video https://edu.csdn.net/course/detail/36074 Python Actual Quantitative Transaction Finance System https://edu.csdn.net/course/detail/35475 This article has been included https://github.com/lkxiaolou/lkxiaolou Welcome to star. Search focuses on WeChat's public number "Insect Catcher Master& ...

Added by hannnndy on Thu, 24 Feb 2022 19:31:16 +0200

Pre middle suffix expression, inverse Polish calculator, infix to suffix

catalogue Prefix expression Infix expression Suffix expression (inverse Polish) Inverse Polish calculator code implementation Infix to suffix expression Prefix expression Prefix expression is also called polish. The operator of prefix expression is before the operand. For example: (3 + 4) * 5-6 corresponding prefix expressi ...

Added by telvitajoel on Thu, 24 Feb 2022 18:31:10 +0200

Java static \ dynamic agent

Java Agent Before acting, we need to know what we are acting for For example, we have an original object. We don't directly access it. We access it through an agent. The purpose of this is that we don't need to modify the original object in the future. We can implement specific methods by modifying the agent class. Let's see a specific examp ...

Added by nafarius1357 on Thu, 24 Feb 2022 18:18:46 +0200

[learning notes] reflection operations commonly used in Java

1, Introduction to reflection 1.1 prior knowledge class is also an object In the object-oriented world, * * the Class in java (the Class we define) is also an instance object, * * is an instance object of Class class, which is called (class type) on the official website. Class loading information 1.2 what is reflection? In the running s ...

Added by mkoga on Thu, 24 Feb 2022 17:58:23 +0200

Servlet life cycle (code + diagram)

After reading some articles on the Internet, I feel that it is too theoretical. Now let's briefly talk about the life cycle of Servlet, and then verify it with code. When the browser accesses the server, the server parses the url. If the browser does not want static resources, the server accesses the corresponding Servlet according to the URI. ...

Added by ginoitalo on Thu, 24 Feb 2022 17:38:24 +0200

java introduction notes 9

abstract class The method modified with abstract has no method body, only declaration. The definition is a specification, which is to provide concrete implementation for abstract methods 1. Classes with abstract methods can only be defined as abstract classes 2. Abstract classes cannot be instantiated, that is, they cannot be instantia ...

Added by jonathanellis on Thu, 24 Feb 2022 16:46:42 +0200

java official website tutorial (server)

Concurrency - the Java platform has APIs to help you develop multithreaded programs Computer users take it for granted that their system can do more than one thing at a time. They assume that they can continue to work in the word processor, while other applications download files, manage print queues, and stream audio. Even a single applicatio ...

Added by TheUnknown on Thu, 24 Feb 2022 16:12:15 +0200

Spring Cloud microservice Architecture - getting started creating parent project

I Spring Cloud microservice architecture 1. What is micro service The foundation of microservice architecture (MSA) is to split a single application into multiple independent small services, which can be developed, deployed and run independently. 2. Core component analysis Spring Cloud Alibaba provides the following core functions by defaul ...

Added by navarre on Thu, 24 Feb 2022 14:30:58 +0200

Message queue RabbitMQ

The most common way of communication between services is to call each other directly to communicate. Instant messaging (synchronous communication) refers to that a message can reach the other end immediately after it is sent from one end. After a message is sent from one end, it first enters a container for temporary storage. When certain con ...

Added by s2day on Thu, 24 Feb 2022 13:56:22 +0200

Analysis of CyclicBarrier source code

1, Introduction It's best to familiarize yourself with CyclicBarrier before you understand it CountDownLatch The two tool classes can achieve the effect of thread waiting, but their focus is different. CountDownLatch can only be used once. When its counter is 0, it will wake up all waiting threads in the synchronization queue, and then it will ...

Added by mikanmao on Thu, 24 Feb 2022 13:44:24 +0200