Enable Aspect JAuto Proxy for Springboot Source Analysis

Summary: The two core technologies of Spring Framwork are IOC and AOP. AOP is widely used in Spring's product line. If reflection is the basis for your access to advanced level, then the agent is the base for you to stabilize the advanced level. The essence of AOP is also known as CGLIB dynamic proxy technology. It must have been used more or l ...

Added by lepass_7 on Thu, 22 Aug 2019 17:44:19 +0300

Spring Security Resolution-Authentication Process

Spring Security Resolution (2) - Authentication Process When learning Spring Cloud, when encountering the related content of authorized service oauth, he always knows half of it, so he decided to study and collate the content, principle and design of Spring Security, Spring Security Oauth2 and other permissions, authentication-related content. ...

Added by Zomie on Thu, 22 Aug 2019 16:41:12 +0300

Unity ECS+Jobs System Notebook Case Analysis 1

This chapter is for you to analyze ECS cases, resources come from, you get it by yourselves:https://github.com/Unity-Technologies/EntityComponentSystemSamples ECS Case Analysis 1. ForEach - An Introduction Case of ECS In this case, there are t ...

Added by scvinodkumar on Thu, 22 Aug 2019 15:30:19 +0300

Handwritten RPC Framework Chapter 1 Custom Configuration xml

Case introductionThis case realizes a simple rpc framework through three chapters. It is used to learn how rpc framework communicates. The current chapter mainly introduces how to customize XML files and parse them. To parse a custom xml, you first define your own xsd file and implement spring's Namespace Handler Support and Bean Definition Par ...

Added by crishna369 on Thu, 22 Aug 2019 11:20:56 +0300

Beginning with GraphQL, your first Query

Please step into my Blog for a better reading experience!Links to this article Here What is GraphQL? The official interpretation of GraphQL is a query language for the API.That may not be very understandable. For example, a traditional restFulAPI for requesting user data: This API always returns three attributes: id,name,avatar. What if we do ...

Added by adamgram on Thu, 22 Aug 2019 05:09:58 +0300

Solve the problem of multi-field joint logic checking [Enjoy Spring MVC]

Every sentence Don't complain about life and think about resigning every day like Sister Xianglin. The point of offence is to say, "degenerate" to work with such a person, is there no reason in oneself? Preface I thought I had said so much about Java/Spring data (binding) checking, which is basically over. But today at noon, a small ...

Added by uatec on Wed, 21 Aug 2019 06:48:00 +0300

BeanFactory.getBean of Srping Source

This article is about source parsing for Srping's BeanFactory.getBean. If this is your first look, first look at XMLBeanFactory parsing: https://blog.csdn.net/qq_3025... To better understand Spring's registration principles, this blog is a step-by-step look at how spring implements getBean source code. Spring version is 5.X. The source code has ...

Added by plugnz on Wed, 21 Aug 2019 06:01:12 +0300

GroupSequence Provider and GroupSequence control the order of data validation and solve the problem of multi-field joint logic validation [Enjoy Spring MVC]

Every sentence Don't complain about life and think about resigning every day like Sister Xianglin. The point of offence is to say, "degenerate" to work with such a person, is there no reason in oneself? Preface I thought I had said so ...

Added by Stanley90 on Tue, 20 Aug 2019 16:34:01 +0300

Principle Analysis of Permission Annotation in shiro

Summary Not long ago, I just learned how to use the permission annotation (), and began to think about it. The initial guess is to annotate @Aspect, which is implemented in a way similar to that shown below (recording audit logs facetly). Later found that this is not the case, so a special analysis of the source code. @Component @Aspect public ...

Added by deltawing on Tue, 20 Aug 2019 10:48:30 +0300

JavaScript validates forms using form elements

Chapter 1: Validating forms using JavaScript The main role of JavaScript: validating forms 1 Simplest form validation - Prohibit blank mandatory items 1.1 The simplest HTML structure Registration is the most basic part of a website. It is the interaction basis of a system. Example: <!DOCTYPE html> <html> <head> &lt ...

Added by amotaz on Mon, 19 Aug 2019 13:15:04 +0300