Spring Boot Practice: Creation of Three Interceptors

Interceptors in Spring In web development, interceptor is a commonly used function. It can help us verify whether to login, authorization, data validation, pre-set data and the efficiency of statistical methods, etc. Today I'll talk about the interceptor in spring in detail. There are two main types of interceptors in spring: Handler Intercepto ...

Posted by chriskl on Fri, 16 Aug 2019 09:19:42 +0200

rxjs series--Observale and Observer

In RxJS, the full flow of a data stream needs to contain at least Observable and Observer. Observable is the observer, Observer is the observer, Observer subscribes to Observable, Observable pushes data to Observer to complete the whole process. It can be said that a complete RxJS data stream is an interactive game between Observable and Obser ...

Posted by gjdunga on Mon, 29 Jul 2019 11:32:58 +0200

Analysis of CSS3 Deformation, Transition, Animation and Related Attributes

1. Deformation transform: element objects can be rotate d, scale d, moved translate, skew, matrix deformations.Example: transform: rotate(90deg) scale(1.5,0.8) translate(100px,50px) skew(45deg,45deg); /*Matrix Deformation*/ matrix(<number>,<number>,<number>,<number>,<number>,<number>); /*perspective*/ persp ...

Posted by SpasePeepole on Sat, 27 Jul 2019 23:16:09 +0200

In MVC Controller, requests are intercepted and processed at will, regardless of custom routing.

MVC in Asp.net is mainly oriented to Content-Type of "text" type to handle HTTP requests. In addition to file transfer, even json and xml are text types. Therefore, MVC naturally handles input and output of text type very well. Sometimes, however, this does not satisfy us. What happens when we want to transfer binary byte [] ...

Posted by riespies on Tue, 23 Jul 2019 23:13:18 +0200

CSS: A collection of graphics for you and me!

These simple-looking graphics are all implemented using pure CSS plus an HTML tag. Many of the implementations I've introduced before, or you know, but some believe you haven't seen them before. 1.Square Real-time rendering works as follows: Related CSS code: #square { width: 100px; height: 100px; background: red; } 2. Rectangles Effect: ...

Posted by roadkillguy on Tue, 23 Jul 2019 00:10:17 +0200

react-navigation navigator in project practice

React-Native brings new horizons to the front-end. You can use the web development language javascript to implement Native development (ios/android). Now the front-end can do more. The Use of Reaction-Navigation Reaction-native uses navigators to implement native routing functions, but the official website is too brief, the only entry docu ...

Posted by said_r3000 on Wed, 12 Jun 2019 22:20:09 +0200

The Development and Background Construction of Wechat Public Number

I. background Shortly after joining the new company, I met a colleague who was leaving and handed over the project to me. Colleagues leave their jobs in a hurry, so the handover is not very good, which is also an objective reason for the more problems behind. As shown in the title, the front end is developed by vue.js+node.js, the back end is d ...

Posted by shivani.shm on Mon, 27 May 2019 19:52:50 +0200

Front End Basic Learning-CSS for Column Charts

CSS is powerful in handling typesetting, not impossible but unexpected.Next, we'll work on a column chart. Start with a specific framework.We use an unordered list as a whole, and what's inside we simply choose inline null span, strong, em to fill. <ul class="chart"> <li><em>Call of Duty</em><span>: < ...

Posted by corruption on Fri, 17 May 2019 05:36:20 +0200

Introduction to Dubbox and Zookeeper and a small introductory case

Dubbox 1: IntroductionDubbox is a distributed service framework. Its predecessor is Dubbo, an open source project of Alibaba, which is used in domestic e-commerce and Internet projects. In the later period, Alibaba stopped the maintenance of the project. Dangdang Networks optimized and maintained on the basis of Dubbo. In order to distinguish ...

Posted by drbigfresh on Sat, 11 May 2019 14:56:42 +0200