Collection of annotations and AOP implementation logs
The background is: the project is a distributed project deployed with spring cloud eureka service system, which is separated before and after, and the front-end node s directly call each service interface.
The principle is to start and end the log collection of recording request, response and operation information in the handl ...
Added by aleksandra on Wed, 27 Nov 2019 18:36:19 +0200
Summary of es8 knowledge points
ES8
Today, let's learn some new API of es8.
1. What is the relationship between the use of Async/Await syntax and promise?2. What is the relationship between Object.values(), Object.keys(), and Object.entries()?3, String padding? What are the syntax and usage scenarios?4. What is Object.getOwnPropertyDescriptors()? What are the usage scenario ...
Added by DaveLinger on Wed, 27 Nov 2019 11:07:03 +0200
Java Description Design Mode (23): Visitor Mode
Source code for this article: GitHub. Click here || GitEE. Click here
1. Life Scene
1. Scene description
Electrical competition is a sport that reaches the level of "competition" in a game.Intelligent antagonistic movement between people using electronic devices as sports equipment.Through competition, people's reaction ability, coor ...
Added by powlow on Tue, 26 Nov 2019 01:50:02 +0200
Kotlin Core Syntax: Introduction to kotlin, Type System
Kotlin is a static language that runs on Java virtual machines, Android s, and browsers. It is 100% compatible with JAVA. If you are familiar with Java, you will find that Kotlin still uses the classic JAVA collection framework, in addition to its own standard libraries.
Introduction to kotlin
First try the Kotlin code.The Book class contains t ...
Added by NeilB on Mon, 25 Nov 2019 05:33:10 +0200
WPF. Four ways to change the shape of pictures
1.ScaleTransform makes the attribute of zooming in or out of a picture establish a plane rectangular coordinate system with a point (CenterX,CenterY) as the origin, and then zooms in or out through scalexy
Here are examples and results
<Image Source=" Images/2.PNG" Width="100" Stretch="Fill" Cursor="Hand" RenderTransformOrig ...
Added by Chips on Sun, 24 Nov 2019 18:36:04 +0200
04jqGrid - data transfer structure
Data types supported by jqGrid: xml, json, json, local or clientSide, xmlstring, jsonstring, script, function ( )
Json data
jsonReader needs to be defined to correspond to the data returned by the server. Its default value is:
{
"cell": "cell",
"id": "id",
"page": "page",
"records": "records",
"repeatitems" ...
Added by Chappers on Sun, 24 Nov 2019 16:57:24 +0200
Explanation of the usage of Object.assign()
Explanation of the usage of Object.assign()
Syntax: Object.assign(target sources) target: target object, sources: source object
Copies the values of all enumerable properties from one or more source objects to the target object. It will return the target object.
const target = { a: 1, b: 2 };
const source = { b: 4, c: 5 };
c ...
Added by Gordicron on Sun, 24 Nov 2019 16:21:09 +0200
java reflection knowledge summary (for use only)
I. understanding reflection (three ways to realize reflection)
1. Instantiate the object first, and then reflect it
Date date = new Date();
//The generics here can only be "?"
Class<?> dts = date.getClass();
System.out.println(dts.getName());
2. First import the package of the class, and then reflect
import ...
Added by ryza_ on Wed, 20 Nov 2019 19:48:29 +0200
jQuery Source Parsing Style Operation Module Style Details
Style manipulation module can be used to manage the style, coordinates and dimensions of DOM elements. This section explains style dependency. Style manipulation is implemented through the css method of the jQuery instance, which has many execution methods, as follows:
css(obj); when parameter 1 is an object, it means that multiple css styles ...
Added by Voodoo Jai on Wed, 20 Nov 2019 02:44:33 +0200
Reflection mechanism
brief introduction
PHP Reflection API is a new function of PHP 5. It is used to export or extract detailed information about classes, methods, properties, parameters, etc., including comments.
class Reflection { }
interface Reflector { }
class ReflectionException extends Exception { }
class ReflectionFunction implements Reflector { }
class Ref ...
Added by myfafa on Mon, 18 Nov 2019 20:35:57 +0200