Spring Security: Basics
1. Getting to know Spring Security first1.1 Spring Security concept Spring Security is a security framework implemented by Spring using AOP thinking and based on servlet filters. It provides a complete authentication mechanism and method-level authorization functions. It is a very good permission management framework. Spring S ...
Posted by msnhockey on Wed, 30 Nov 2022 20:01:39 +0300
Weblogic Series Vulnerability Recurrence
#Disclaimer: This is a personal note, which is only for learning. It is prohibited to use it for any illegal act. Any illegal act has nothing to do with me.
Weblogic XMLDecoder Deserialization Vulnerability (CVE-2017-10271)
Vulnerability Overview
Vulnerability No.: CVE-2017-10271 Vulnerability impact: wls wsat XMLDecoder deserialization vu ...
Posted by chelsea7 on Sat, 17 Sep 2022 21:36:21 +0300
SpringBoot 02 notes - SpringBoot configuration yml
Learn about bootstrapping to quickly create applications
Reference code: E:\Javawinner\fastspringboot
1. Select spring initializr - > next - > set group and java version – > next to add dependency
Various annotations
@RestController Equivalent to@Controller @ResponseBody
@RequestMapping("/hello")
@RequestMapping(value="/hello ...
Posted by chetan1 on Wed, 25 May 2022 20:10:47 +0300
Android 7.1 prohibits third-party sharing of non source APK split screen method
Two methods
The first method is to decompile apk directly and get Android manifest XML file; The second way is to go to the framework layer. There is a file dedicated to parsing apk data, where changes are made.
1. apk decompilation method
This method focuses on the reverse compilation of apk. I spent most of my time looking up tutorials onli ...
Posted by kamasheto on Sun, 22 May 2022 10:02:46 +0300
SVG basic usage
1, Introduction
SVG It is a program language that uses XML to describe two-dimensional graphics and drawings. It became a W3C recommendation on January 14, 2003; characteristic: 1. Is a scalable Vector graph shape 2. Is to use xml Format defines vector based graphics for the network 3. Enlarge or change the size of the picture without loss of ...
Posted by phppucci on Tue, 17 May 2022 03:19:30 +0300
Bean factory
Spring reading directoryOver time, every drop of water wears away the stone 😄DefaultListableBeanFactoryThe previous article used the registerBeanDefinition method in the DefaultListableBeanFactory class to cache the BeanDefinition in the beandefinitionmap. DefaultListableBeanFactory is the most core BeanFactory in Spring. Let's take a look at ...
Posted by synchro_irl on Fri, 15 Apr 2022 22:15:38 +0300
[Python crawler series tutorial 13-100] Beautiful Soup, which is a delicious soup
Beautiful Soup
First of all, of course, the addresses of various materials. Yours
Official website: https://www.crummy.com/software/BeautifulSoup/ Official documents: https://www.crummy.com/software/BeautifulSoup/bs4/doc/ Chinese documents: https://www.crummy.com/software/BeautifulSoup/bs4/doc.zh/ Let's take a look at the official introdu ...
Posted by shdt on Wed, 13 Apr 2022 20:34:43 +0300
[0 to 0.5] learn Android animation from scratch (middle)
[0 to 0.5] learn Android animation from scratch (middle)
Property animation
Property Animation is a new animation mode provided after Android 3.0 (API 11)
Why provide attribute animation
The animation before API 11 is View animation, which only works on the View object View, not on the attribute, and its animation effect is too sing ...
Posted by epicalex on Mon, 11 Apr 2022 14:31:02 +0300