Summary of IoC Loaded Bean Definitions
Recently, the spring source code has been re-parsed so that I can better read the spring source code in the future. If you want to discuss it in depth, Please add me QQ:1051980588.
1 ClassPathResource resource = new ClassPathResource("bean.xml");
2 DefaultListableBeanFactory factory = new DefaultListableBeanFactory();
3 XmlBeanDefinitionRe ...
Posted by maga2307 on Sun, 13 Oct 2019 03:46:45 -0700
Maven's Core Concept
Maven's Core Concept
1. coordinates
Maven coordinates consist of main components (GAV) to determine the location of a jar package groupId: Defines the current Maven organization name artifactId: Define the actual project name Version: Defines the current version of the current project
2. Finding coordinates
Visit http://www.mvnrepository.co ...
Posted by Killswitch on Sat, 12 Oct 2019 10:36:01 -0700
python day 9: xlm module, configparser module, subprocess module
Catalog
python day 9
1. xml module
1.1 First Understanding xml
1.2 Traversing specified nodes of xml documents
1.3 Manual creation of xml documents through python
1.4 Two Ways to Create Nodes
1.5 summary
2. configparser module
4. shutil module
5. subprocess m ...
Posted by lakilevi on Sat, 12 Oct 2019 08:22:23 -0700
Knative Actual Warfare: Implementing Weather Service Based on Knative Serverless Technology - Part II
How did we describe in the last issue? Implementation of Weather Service Based on Knative Serverless Technology First of all, let's review what we introduced in the previous part.
Through the Gaud Weather API interface, regular events are sent every three hours, and the weather information of the domestic cities in the next three days is store ...
Posted by Albright on Fri, 11 Oct 2019 23:55:11 -0700
Realization of H5 Payment in UnionPay Business by php
UnionPay Business H5 Payment Interface Document: Document address
1: H5 Payment Interface Address:
1: Alipay payment
Test address: http://58.247.0.18:29015/v1/netpay/trade/h5-pay
Official address: https://api-mop.chinaums.com/...
2: UnionPayment
Test address: http://58.247.0.18:29015/v1/netpay/uac/order
Official address: https://api-mop.chinaum ...
Posted by petitduc on Fri, 11 Oct 2019 23:19:22 -0700
Implementation of Android native PDF function
1, background
Recently, the company hopes to achieve Android native PDF function, requirements: efficient and practical.
After two days of research and coding, a simple Demo is implemented, as shown in the figure above.
There are still many technical points about the realization of PDF function in Android's native end. In order to avoid detour ...
Posted by cschotch on Fri, 11 Oct 2019 17:52:07 -0700
python day 8: re module supplement, import module, hashlib module, string formatting, module knowledge collection, initial knowledge of requests module
Catalog
python day 8
1. re module supplement
2. import module import
3. os module
4. hashlib module
5. String format: percentile and format methods
6. Modular Knowledge Collection
7. Initial knowledge of requests module
python day 8
2019/10/11
Data from the ...
Posted by Kerry Kobashi on Fri, 11 Oct 2019 12:24:23 -0700
Implementation of node crawling web pages
I. Preface
It has always been felt that the crawler is a very high-end thing. In the era of big data, the crawler is particularly important. After a lot of exploration, we finally realized this function with node, including the analysis of grabbed content.
Two, text
1. First of all, build an http service, where we are familiar with koa (this is ...
Posted by itisme on Fri, 11 Oct 2019 11:39:34 -0700
Easy to understand spring singleton and prototype
As for spring bean scopes, based on different containers, there will be differences, such as BeanFactory and Application Context containers. In this article, we mainly discuss the bean scopes based on Application Context containers.
As for the scope of bean s, spring mainly includes singleton,prototype,session,request,global. This article main ...
Posted by robogenus on Fri, 11 Oct 2019 05:48:32 -0700
java Foundation (23): Byte Stream, Character Stream
1. Byte stream
In the previous learning process, we have been operating files or folders, and did not write any data to the file. Now we're going to start writing data to a file, or reading data from a file.
1.1 byte output stream
OutputStream, an abstract class, is a superclass representing all classes of the output byte stream. The data ...
Posted by sheen4him on Fri, 11 Oct 2019 02:46:51 -0700