Spring Boot integration alipay4j

Alipay4j SDK For Java Development platform SDK for Java live or payment developers. Official website http://www.alipay4j.com/ (Da Jianzhong, if you have PHP development engineer, please contact my mailbox 15213595272@163.com) Introductory video Coming soon Project introduction alipay4j de ...

Added by philipreed on Tue, 01 Oct 2019 22:42:01 +0300

Zookeeper Windows Cluster Construction

The configuration of zoo in the D: zookeeper-3.4.14 conf directory in the zookeeper-3.4.14 file is as follows # The number of milliseconds of each tick tickTime=2000 # The number of ticks that the initial # synchronization phase can take init ...

Added by hey_suburbia on Thu, 05 Sep 2019 08:40:28 +0300

Quick start to pyecharts summary

Recently, in the development of stock visualization cases, pyecharts visualization tools are used more, mainly the following feelings and share with you:1. For students who have just learned visualization or data analysis, they can spend a few days ...

Added by commandonz on Fri, 23 Aug 2019 05:30:33 +0300

Week 20 - day87 - database day09 - backup recovery

Chapter 7 Backup and Recovery 1. What does DBA (Operations and Maintenance) need to do in backup recovery 1.1 Design backup strategy 1.1.1 backup cycle Day, week, month 1.1.2 Backup Mode Full, incremental... 1.1.3 Backup What? data ...

Added by Damien_Buttler on Thu, 15 Aug 2019 14:31:44 +0300

Tensorflow Faster RCNN Source Resolution (TFFRCNN) train.py

This blog is on github CharlesShang/TFFRCNN Edition Source Parsing Series Code Notes -------------------------------------------------------------------------------------------------------------------------------------------- Wu Jiang, the author of this paper ------Click here to link to the original text of Blog Garden------   _ DEBUG def ...

Added by DssTrainer on Wed, 31 Jul 2019 09:54:44 +0300

spring Basic Knowledge - --- Introduction to spring, IOC Derivation, hellospring, Modification of Test demo, IOC Creation Objects, spring Configuration File

1. Introduction to spring Brief Introduction to spring Single Hell: servlet, jdbc, jsp... Framework to replace JDBC: MyBatis; In 2002, Rod johnson first introduced Spring Framework's predecessor, interface21 Framework In 2003, Spring Framework was redesigned based on interface21 Framework and releas ...

Added by fekaduw on Tue, 30 Jul 2019 11:47:02 +0300

Persistent snapshot of Redis (rdb file)

Persistence of Redis Persistence is to keep our data intact and to store it on our hard disk. There are two ways of persistence in Redis, one is snapshot persistence, the other is AOF persistence, each has its own advantages and disadvantages, in the project we have to choose the specific persistence ...

Added by Braet on Mon, 29 Jul 2019 06:03:48 +0300

MongoDB Learning: Backup Recovery

This paper mainly introduces the method of backup and recovery of MongoDB replica set, common commands, and some specific operation procedures. Finally, a backup scheme is introduced. I. Backup Method 0,oplog 0.1 What is oplogoplog is a capped collection, located in the local library 0.2 local Librarylocal libraries are the system libraries of ...

Added by saranya on Tue, 23 Jul 2019 05:35:37 +0300

Redis RDB Persistence Details

Redis is an in-memory database that stores data in memory and is much faster to read and write than traditional databases that store data on disk.However, once the process exits, Redis's data will be lost. To solve this problem, Redis provides two persistence schemes, RDB and AOF, to save in-memory data to disk and avoid data loss. In Redis Per ...

Added by fizix on Sat, 06 Jul 2019 19:35:02 +0300

SpringBoot runs methods in the linux background with source code

1. On the linux server, add the &symbol at the end of the program as follows: java -jar test.jar & &Symbol, in the linux system, means to let the process execute in the background of the system, but once the process has output, your console will be occupied by the information currently output.   2. Consider redirecting the stand ...

Added by dbradbury on Fri, 28 Jun 2019 19:27:31 +0300