CentOS system manually deploys MySQL database

Introduction:   MySQL is a relational database management system commonly used in Web site scenarios such as LAMP and LNMP. This article will show you how to install, configure, and remotely access MySQL databases on an ECS instance of the CentOS system. Mirror download, domain name resolution, time synchronization Click   Alibaba ...

Posted by iceangel89 on Sun, 28 Nov 2021 18:25:36 -0800

Getting started with Android series: message prompt box and dialog box

1, Message prompt box and dialog box 1. Use Toast to display the message prompt box There are contacts before the message prompt box. The main application is Toast.makeText().show Next, learn in detail The objects of the Toast class have the following common methods setDuration(int duration) sets the duration toast.length of the message_ ...

Posted by bluetonic on Sun, 28 Nov 2021 18:10:46 -0800

Detailed explanation of "concurrency" in Java [volatile, synchronized, Atomic class operation, Atomic.., CAS principle]

1. Understanding of volatile? volatile is a lightweight synchronization mechanism provided by Java virtual machine Ensure visibilityProhibit instruction sortingAtomicity is not guaranteed JMM (Java memory model) JMM itself is an abstract concept, which does not really exist. It describes a set of regulations or specifications, which def ...

Posted by Simmo on Sun, 28 Nov 2021 18:00:07 -0800

Java_IO stream (Intensive)

1. Concept of Java Io flow Stream: represents any data source object capable of producing data or receiving end object capable of receiving data. The essence of flow: data transmission. According to the characteristics of data transmission, the flow is abstracted into various types to facilitate more intuitive data operation. Function: ...

Posted by Fritz.fx on Sun, 28 Nov 2021 17:47:30 -0800

JAVA classes and objects

1. Preliminary cognition of class and object [object oriented concept]: 1. Object oriented is a way of thinking and an idea. For example: concepts and examples. Theory and practice. Name and reality, etc 2. Class is the general name of a class of objects. An object is an instance of this kind of materialization. 3. The benefits of obj ...

Posted by choppsta on Sun, 28 Nov 2021 17:30:46 -0800

Flowable introductory series article 70 - Introduction to JPA

1. Description You can use JPA entities as process variables, allowing you to: Update the existing JPA entity based on process variables that can be filled in the userTask or generated in the serviceTask.Reuse existing domain models without having to write explicit services to get entities and update valuesMake a decision based on the attribu ...

Posted by CaptainStarbuck on Sun, 28 Nov 2021 16:55:14 -0800

Namesrv for RocketMQ Source Analysis

Namesrv for RocketMQ Source Analysis Source analysis is more content points, of course, we can not read all the source code of RocketMQ, so we interpret the core, focus source code. The source code to be interpreted is as follows: 1,RocketMQ Overall architecture of source analysis 2,RocketMQ Source Analysis NameServer 3,RocketMQ Source Analy ...

Posted by bonekrusher on Sun, 28 Nov 2021 16:41:14 -0800

Offset analysis function of MySQL advanced application window function

  preface This article will explain the offset analysis function + over() through an example 1, Concept of offset analysis function lag(col,n,default): used to count the value of the nth row up in the group. The first parameter is the column nameThe second parameter is the nth line up (optional, not filled in, default to 1)The third ...

Posted by rhosk on Sun, 28 Nov 2021 16:41:27 -0800

Notes of Xinfeng mall project

New bee mall project notes 1. Start the project and access the api online documentation http://localhost:8080/swagger-ui.html [the external chain image transfer fails. The source station may have an anti-theft chain mechanism. It is recommended to save the image and upload it directly (img-ge9fugsh-163811491017) (C: \ users \ Chen \ appdata ...

Posted by jdpatrick on Sun, 28 Nov 2021 16:33:55 -0800

Java Foundation 18 Collection

aggregate Java has many collection classes, which are divided into two main categories Sets are mainly two groups (single-column set, double-column set)The Collection interface has two important subinterfaces, List and Set, whose implementation subclasses are single-column collectionsThe implementation subclass of the Map interface is a t ...

Posted by abo28 on Sun, 28 Nov 2021 16:26:04 -0800