Transaction Delivery Properties for SpringBoot Series Tutorials
Transaction Delivery Properties for the 200202-SpringBoot series of tutorials
For mysql, there may be several main points of knowledge about transactions at the isolation level; in the Spring system, there is also a transfer property of knowledge point transactions that is equally important when using transactions. This article will focus on ...
Posted by andy666 on Sun, 02 Feb 2020 20:01:59 -0800
Diagram the core data structure of the kubernetes scheduler framework
Framework is the second implementation of the kubernetes extension. Compared to Scheduler Extender's extension based on remote independent services, the Framework core implements a localized specification process management mechanism based on extension points
1. Expand Achieving Goals
The design of the Framework has been clearly described in th ...
Posted by nikkieijpen on Sun, 02 Feb 2020 10:48:54 -0800
Simulate weak network environment using command line under Mac
For audio and video development, we often need to simulate the weak network environment and observe the performance of APP under the weak network, such as packet loss, delay, jitter, bandwidth restriction, etc. Mac system has a weak network tool APP, called Network Link Conditioner, which supports the visualization of the simulation and config ...
Posted by bugsuperstar37 on Sun, 02 Feb 2020 10:19:02 -0800
C language function: recursion and iteration
A brief introduction to C language functions
C language function is a function used to compile c language. Its library function is ctype.h, which is divided into classification function, mathematical function, directory function, process function, diagnosis function, operation function, etc.
On the surf ...
Posted by like_php on Sun, 02 Feb 2020 06:19:50 -0800
Chapter 14 structure and other data forms
1, Structure
The structure is similar to the class in java, but it only has properties and no methods
1.1 define, declare, initialize structure, access structure members
#include <stdio.h>
#define SIZE 20
//Defining structure
struct book
{
char name[SIZE];
char author[SIZE];
double price;
...
Posted by sneha1234 on Sun, 02 Feb 2020 03:22:55 -0800
A series of highlights of Spring official documents: lookup method
There are different scope s between beans
For example, when bean A is a singleton, if bean B is relied on, it is a prototype rather than a singleton. Since beanA has been assembled in the container, when beanA's method a is called to get the bean B object, it is the same object. Does not meet the prototype requirements of bean B.
One of the imp ...
Posted by mpharo on Sat, 01 Feb 2020 22:35:50 -0800
Talk about artemis' individual knowledge
order
This paper mainly studies the individual knowledge of artemis
acknowledge
activemq-artemis-2.11.0/artemis-jms-client/src/main/java/org/apache/activemq/artemis/jms/client/ActiveMQMessage.java
public class ActiveMQMessage implements javax.jms.Message {
//......
public void acknowledge() throws JMSException {
if (session != nul ...
Posted by dylan001 on Sat, 01 Feb 2020 06:06:02 -0800
A summary of string questions of sword finger offer
The types of questions about strings in question library are as follows
String, character array, integer conversion, etc
Rule judgement
Digital operation
Related to Array Operations
dynamic programming
Advanced data structure
1. Conversion of string, character array, integ ...
Posted by Hiro on Sat, 01 Feb 2020 06:04:09 -0800
Spring Boot
If you want speed, you will not reach it. If you want speed, you will reach it!
hello, hello, I've met you again. Today is February 1, 2020. On the eighth day of the lunar new year, the Spring Festival will soon be over. The new type of coronavirus pneumonia has become the theme of the Spring Festival in 2020. I'm in awe of life. I hope I can ...
Posted by llcoollasa on Sat, 01 Feb 2020 03:56:20 -0800
Java foundation - structured programming
Structured process design
The principle of structured programming can be expressed as: program = (algorithm) + (data structure).
The three basic structures of structured programming are sequence structure, selection structure and cycle structure.
Sequential structure
Sequential structure means that ...
Posted by spamoom on Fri, 31 Jan 2020 23:09:08 -0800