Skillfully use RabbitMQ and integrate Spring AMQP

1. Introduction to rabbitadmin rely on <dependency> <groupId>com.rabbitmq</groupId> <artifactId>amqp-client</artifactId> <version>3.6.5</version> </dependency> <!--Rabbit SpringBoot--> <dependency> ...

Posted by RyanDev on Thu, 25 Jun 2020 02:31:54 -0700

ASP.NET Progressive application of core blazer webassembly (PWA)

Blazor supports progressive application development, or PWA. Using PWA mode can make web application have the experience of native application. What is PWA PWA application refers to those web applications developed by using specified technology and standard pattern, which will give them the characteristics of web application and native appli ...

Posted by bosco500 on Wed, 24 Jun 2020 19:55:24 -0700

Problems encountered in SpringBoot 2.3.5 Integrating redis cache custom JSON serialization.

Currently, I am learning springboot from teacher Lei Fengyang in Silicon Valley. The springboot version used in the teacher's course is 1.5, while I use 2.3.5. The difference between the 2.x and 1.x versions of springboot is quite significant, with many of the underlying code changed and quite a bit cha ...

Posted by rantsh on Wed, 24 Jun 2020 18:31:20 -0700

Go cli Daily Library

Introduction to ## cli Is a library for building command line programs.We've previously described a library for building command line programs cobra .Functionally, they are similar, and cobra has the advantage of providing a scaffold for easy development.cli is very simple, all initialization is to create oneCli.AppThe object of the structure.A ...

Posted by printf on Tue, 23 Jun 2020 17:14:20 -0700

python_Interface Automated Test Framework

This article summarizes and introduces the development of interface test framework. The environment uses python3+selenium3+unittest+ddt+requests test framework and DDT data-driven, integrates test data functions such as Excel management test cases, and generates test reports using HTMLTestRunner. There are open source interface test tools such ...

Posted by newdles on Tue, 23 Jun 2020 16:54:17 -0700

Operational commands for elasticsearch indexes (core concepts, operational statements, and paging)

Article Directory 1. Description of put, post, delete, get methods 2. Data Models and Core Concepts 3. Basic operation of index 1. Create an index 2. View all current indexes 3. Modify (update) the document 4. Delete 5. Add data 6. Bulk operation data bulk 8. Bulk Read Documents 9. Search for data ...

Posted by Nukeum66 on Tue, 23 Jun 2020 09:06:32 -0700

Vue advanced use - use Element UI component library and Sass preprocessing language

@[TOC](Vue advanced use (3) - use Element UI component library and Sass css preprocessing language) Using Element UI third party component library 1. cnpm installation element UI dependency cnpm install element-ui --save At package.json Element UI version information can be seen in the file "depend ...

Posted by bow-viper1 on Tue, 23 Jun 2020 02:27:06 -0700

Brief analysis of Deno source code interaction between JS and Rust

start Today, we start to analyze how JS and Rust interact. After all, the performance of JS is still not competent in some scenarios. This is the time when Rust is on the stage. The two complement each other and do no harm! op I have always said that op is a plug-in mechanism on deno. All functions on deno are basically based on this plug-in me ...

Posted by limao on Mon, 22 Jun 2020 22:36:23 -0700

Hand in hand to teach you to write a visual code generator based on sqlsugar 4 (generate entity, take SqlServer as an example, the source code is attached at the end of the article)

In the development process, it is inevitable to create entity classes. Tables with fewer fields can be written manually. However, if more fields are created manually, it is a waste of time. If a table has more than 100 fields, handwriting is not realistic. At this time, we will use some tools, such as dynamic soft code generator, code generator ...

Posted by bubbadawg on Mon, 22 Jun 2020 21:42:08 -0700

Introduction and implementation of Json field picker

Recently, I wrote a gadget for the convenience of work. The utility is very simple, which is to sift out the parts you want from a json string. introduce The background is like this. For the convenience of online debugging, a tool can simulate to launch a data request, and then display the results to the page in the form of json. But the probl ...

Posted by scofansnags on Mon, 22 Jun 2020 19:57:44 -0700