VUE implements Studio management background: OptionBox, a comprehensive attribute input interface, which can be cascaded and reset

To facilitate code reading, the test data has been separated and placed in the mock Directory: If you read the code, just pay a little attention. This time, the most important part of RXEditor interface is attribute input component, which can display whether data has been modified or reset to default value in batch. The effect is as follows: ...

Posted by Ulujain on Sun, 08 Mar 2020 01:00:01 -0800

Guess spring boot: dependency injection

Dependency injection Citation and target This is the second article in the spring boot series (Oh, I have written 10 articles, which is not easy). In the previous article, we implemented the creation of bean, but it was just the creation, there was no real implementation of bean injection. So in today's article, we are going to implement automa ...

Posted by SilverFoxDesign on Sat, 07 Mar 2020 20:43:40 -0800

C + + generalization of two terminal queue

Loop two end queue A special queue that can be used to enter and exit a queue at the beginning and end of a queue. Circular double end queue is to make full use of space, using special data storage queue head and tail, here using array to achieve. Circular double end queue (CircleQueue.h) /********* ...

Posted by nano on Sat, 07 Mar 2020 07:52:31 -0800

hexo deploy blog to Alibaba cloud server

Because of the epidemic, Alibaba cloud has sent half a year's servers free of charge, and they can't be used for playing. Then I will first migrate my blog from github to Alibaba cloud, and then change it if there is a problem. Previous conditions: 1. Server 2. hexo has been installed on the local com ...

Posted by zimick on Fri, 06 Mar 2020 02:42:24 -0800

VUE realizes Studio management background: state mode realizes window docking, flexible and free

Yesterday's tabs window was very satisfactory. Today, we have made it possible to change the display style according to its size. When its width is too small, the tab page can float and dock on one side. Specific effect:Left Right Always like simple and clear things, so want to achieve a little more simple, but reality does not allow ah, the ...

Posted by calexa on Thu, 05 Mar 2020 05:28:06 -0800

Django+xadmin to build an online education platform (Chapter 6 of various pit notes is attached from 0-1 whole process manual tutorial)

Create these folders first, and the files in them can be downloaded under my github. And then create these two files Note that CaptchaField will not take effect until a specific package is installed. The interpreter cannot install CaptchaField automatically here: from captcha.fields import CaptchaFiel ...

Posted by SlimSlyk on Thu, 05 Mar 2020 01:59:18 -0800

Spring Cloud Config program example

Catalog Spring Cloud Config server example Spring Cloud Config client example Spring Cloud Config user authentication Configure information encryption Symmetric encryption Asymmetric encryption Configuration refresh Manual refresh auto refresh Spring Cloud Config client sends update notific ...

Posted by ffdave77 on Wed, 04 Mar 2020 19:39:44 -0800

Java Concurrent Programming (01): thread creation, state cycle management

Source code: GitHub point here || GitEE point here 1, Introduction to concurrent programming 1. Basic concepts program Computer programs, procedures, rules and possible files, documents and data related to the operation of computer system. process A process is a program in a computer. A running activity on a data set is the basic unit of ...

Posted by pea on Wed, 04 Mar 2020 04:44:13 -0800

9. Extension of POJO

POJO s generated by jOOQ are generated for fields in a single table.In Association queries, we usually store data from multiple tables in one class.In this case, we can create our own class to add the multitable field member variables we need Creating classes manually is cumbersome for this common s ...

Posted by Jeremysr on Tue, 03 Mar 2020 17:29:18 -0800

A preliminary study of alloc method in OC

Foreword We often use XZPerson *p= [[XZPerson alloc]init] in development. We only know that in this way, we can create a new object and use it directly, We can assign values to this object, but we haven't cared about how the underlying layer of the alloc method is implemented. Today, I'm going to ma ...

Posted by gibs on Tue, 03 Mar 2020 00:33:40 -0800