css usage css syntax
css
css: page beautification and layout control
Concept: Cascading Style Sheets
Cascade: multiple styles can act on the same html element and take effect at the same time
Benefits: Powerful: Separating content presentation from style control Reduce coupling and decoupling Make division of labor and cooperation easier Improve developmen ...
Posted by WinnieThePujols on Thu, 04 Nov 2021 14:15:07 -0700
Meituan interviewer asked: write the best single case model you think? So I wrote seven
Interview question: write a single case model that you think is the best
Interview investigation point
Purpose of investigation: single case mode can investigate a lot of basic knowledge, so many interviewers will ask this question. Small partners should note that during the interview process, any topic that can examine the ability of ...
Posted by Cereals on Thu, 04 Nov 2021 14:06:04 -0700
Bus of spring cloud 2020.0.4 series
1. General
As the old saying goes: people who can rest can work better. Body is the capital of revolution. If their body breaks down, they can no longer work.
To get back to business, we talked about the distributed configuration center config of SpringCloud before. In this article, we talked about the dynamic refresh of config configuration, ...
Posted by mbdonner on Thu, 04 Nov 2021 13:54:57 -0700
OpenFeign full explanation
2. What is Feign?
Feign is also a hard role, and it is designed to make Java Http clients easier.
Feign integrates Ribbon and RestTemplate to make load balancing Http calls, but encapsulates the original way (Ribbon+RestTemplate). Instead of manually using RestTemplate to invoke services, developers define an interface in which service call ...
Posted by DGaleDavid on Thu, 04 Nov 2021 13:35:43 -0700
Byte the interviewer asked: write a single example pattern that you think is the best? So I wrote seven
Interview question: write a single case model that you think is the best
Interview investigation point
Purpose of investigation: single case mode can investigate a lot of basic knowledge, so many interviewers will ask this question. Small partners should note that during the interview process, any topic that can examine the ability of job s ...
Posted by Alexhoward on Thu, 04 Nov 2021 12:18:46 -0700
Analysis of SpringBoot Auto-assembly Principle
In springBoot, we don't need to do any configuration to write directly at the business level
Code, because springBoot Help US configure all the environments.
Here's a simple springboot Project Analysis
Project Code
springBoot main program
```java
@SpringBootApplication
public class HelloApplication {
public static void main(String[] arg ...
Posted by sgs-techie on Thu, 04 Nov 2021 12:08:59 -0700
Quartz simple application (Springboot environment)
Requirements: in the project, it is inevitable to use scheduled tasks to perform some automatic operations. For simple scheduled tasks, you can add @ Schedule annotation to the method to execute scheduled tasks. However, if multiple modules of the same level execute the same method at different time points, there is no way to use @ Schedule onl ...
Posted by vietnamese on Thu, 04 Nov 2021 11:18:21 -0700
Exception, thread, String
1: Abnormal
1. Concept
It is divided into error and Exception. Error is generally handled without writing code Exception classification: Compile time exception (checked): IOException (FileNotFound), ClassNotFound (class not found) Run time exception (u ...
Posted by irkevin on Thu, 04 Nov 2021 09:04:15 -0700
Arthas online java process diagnosis tool online debugging artifact
tag: java diagnostic stack online debugging time-consuming deadlock arthas Alibaba
Arthas
Arthas is an open source Java diagnostic tool of Alibaba, which is deeply loved by developers.
Official website documents: https://arthas.aliyun.com/doc/
When you encounter the following similar problems and are helpless, Arthas can help you solve them:
...
Posted by betportal on Thu, 04 Nov 2021 08:51:39 -0700
Loaders such as JVM s
Class lifecycle
The first five steps together are the traditional whole process of class loading Among them, 2, 3 and 4 are collectively referred to as the link stage
Class loads and initializes
When the virtual machine is started, the main class specified by the user is initialized, which is the class where the main method is sta ...
Posted by intellivision on Thu, 04 Nov 2021 08:05:42 -0700