java sends http, https requests

Using tools-httpclient, HTTP/HTTPS requests can be sent quickly in a project. Currently, four common requests, POST.GET.DELETE.PUT, are supported, and POST is supported to use JSON parameters. How to use the project: Add dependencies: <dependency> <groupId>cn.gjing</groupId> <artifactId>tools-httpclient</artif ...

Posted by telvitajoel on Thu, 07 Nov 2019 08:57:51 -0800

git upgrade project version and generate changelog

Semantic Version Control SpecificationContract SubmissionNode.jsNPMTaobao NPM MirrorCommitizenconventional-changelog-cli introduce Semantic Version Control Contract Submission Noun Interpretation Demonstration Plug-in unit 1. Install Node.js 2. Install cnpm (Taobao NPM mirror) $ npm install -g cnpm --registry=https://registry.npm.taobao.org 3 ...

Posted by p2003morris on Thu, 07 Nov 2019 07:24:22 -0800

Finally, Chinese Pinyin can be displayed automatically on html

In the last article html articles showing phonetic labels In it, I was also mistaken at first. As long as the <ruby>tag is added, the spelling of Chinese characters can be displayed automatically. But obviously, this is only a good idea. In fact, what to spell depends on your own manual work, but in the programmer's world, there is always ...

Posted by gotissues68 on Thu, 07 Nov 2019 06:47:01 -0800

The golang cli command line framework uses

brief introductionCli provides simple and fast development of command line functions.Setting parameters and configurations by command is a basic requirement in applications.Cli can help you quickly build command line functionality. install go get github.com/urfave/cli Simple example package main import ( "fmt" "os" "github.com/ur ...

Posted by JNettles on Thu, 07 Nov 2019 06:19:48 -0800

Spring cloud: spring cloud configuration center and client

Preface: The Spring Cloud Config component is independent and does not need to be registered with eureka.The working principle of config is to pull the read target configuration to the local cache and then supply it to other clients. Once the config is started successfully, you can delete the git configuration (but no one actually does). &nbsp ...

Posted by d22552000 on Thu, 07 Nov 2019 01:48:54 -0800

Pure css3 beautiful checkbox and radio beautification plug-in Pretty.css plug-in

Introduction of plug-ins pretty.css is a beautiful checkbox and radio beautification effect of pure css3. pretty.css can be used in combination with a variety of font icons to beautify the original checkbox and radio, and can also make the animation effect when the button is clicked. Browser compatibility Course pretty.css is a beautiful che ...

Posted by DarkShadowWing on Wed, 06 Nov 2019 13:54:13 -0800

Spring Boot series: Spring Boot asynchronous call @ Async

In actual development, sometimes in order to process the request and respond in time, we may execute multiple tasks at the same time, or process the main task first, that is, asynchronous call. There are many implementations of asynchronous call, such as multithreading, timed task, message queue, etc, In this chapter, we will talk about @ Async ...

Posted by cdhogan on Wed, 06 Nov 2019 12:50:51 -0800

Try Facebook library, can bitcoin get on this train

White paper highlights Before starting to play the library test network, draw the key points in the library white paper, such as how to generate coins, how to trade, etc. Building a simple, borderless currency and financial infrastructure for billions of people The effect is, for example, if you want to go to the United States and need to order ...

Posted by greenday on Wed, 06 Nov 2019 03:09:25 -0800

Thinking and feeling of the first reading of Kingfisher network image cache Library

The OC version of SDWebimage that I read before is mature due to the development trend of Swift. It's also time to practice (think of Andy Lau's practice), think, read and write while flying in the world. At first, I plan to read it from the beginning, but the Kingfisher version is limited to upgrading with the Swift version, so if you want to ...

Posted by gli on Tue, 05 Nov 2019 19:55:52 -0800

Analysis of memory leak when Yii2 framework runs script

phenomenon When running the archiving of edu OCR img table, every tens of thousands of data runs out of memory PHP Fatal error:  Allowed memory size of 134217728 bytesexhausted (tried toallocate 135168 bytes) Trace code discovery is caused by the following code at insert time: EduOCRTaskBackup::getDb()->createCommand()->batchInsert(EduOCR ...

Posted by johncox on Tue, 05 Nov 2019 11:52:40 -0800