Meta data of meta data
Meta data in Android is used in the Android manifest.xml file. The < meta data > tag is used to provide additional data for components. It is a key value pair in itself. You can customize the name and value or resource.
It can be included in the following six components:
<application>
<activity>
<activit ...
Added by sean14592 on Thu, 02 Apr 2020 12:08:31 +0300
Android advanced - using LitePal to operate database
Learn to use LitePal to operate database
About LitePal:
LitePal is an Android open source library, which makes it very easy for developers to use SQLite database. You can do most of the database operations without writing a single SQL statement, including creating tables, updating tables, constraining operations, ...
Added by freeloader on Wed, 01 Apr 2020 21:23:32 +0300
easywechat -- use in thinkPHP5
1. installation
Version 1.1 v-4.0 requires PHP version above 7.0
1.2 run the following command in the project directory
If composer is not installed, install composer first - > http://docs.phpcomposer.com/00-intro.html
Under windows environment, if openssl extension is missing is reported, modify php.ini file and open extension=php_openssl. ...
Added by QuizToon on Tue, 31 Mar 2020 23:33:36 +0300
Mybatis framework III: DAO layer development, Mapper dynamic agent development
Here is the basic construction: http://www.cnblogs.com/xuyiqing/p/8600888.html
Next, we did simple addition, deletion, modification and query: http://www.cnblogs.com/xuyiqing/p/8601506.html
But we found that there were too many duplicate codes
Next, integrate and implement DAO development:
1: Original DAO development:
package dao;
import ...
Added by jomofee on Tue, 31 Mar 2020 22:11:25 +0300
Dubbo source code analysis, loading bean s in Dubbo
We can see that when Dubbo container spring is started, the spring context is started. At this time, it will parse the bean configuration file of spring. The specific parsing work is done by Dubbo config spring. We can see that the corresponding classes are referenced in the Dubbo demo provider project.
<?xml version="1.0" encoding="UTF-8"? ...
Added by cmack on Tue, 31 Mar 2020 19:32:23 +0300
android Golden Map Network Path Implement Custom marker and Click Pop-up Custom Window
Where maps are used in android is everywhere. Take a note of your network path today to generate a custom marker, click on the marker to pop up the custom window (Golden Map is used here)
Here we use Grilde to load web pictures, because it's so convenient!
Under android studio, add the following dependencies to the app/build.gradle file:
comp ...
Added by chwebdesigns on Mon, 30 Mar 2020 23:21:48 +0300
The realization of circular progress bar with progress
Today, a circular progress bar with progress is implemented by customizing the View. The final effect is shown in the following figure:
Now let's talk about the design idea: first of all, this progress bar can customize the number of small rounded rectangles, the size of small rounded rectangles, the angle of small rounded re ...
Added by reecec on Sun, 29 Mar 2020 17:45:16 +0300
How to expand jBPM to realize "abnormal" requirements
If the requirements are "abnormal", we can try to extend jBPM, which is easy to be extended, such as event listener, custom activity, Java code activity, etc.
Suppose we need to customize the query of the task here, and use multiple attributes as the query criteria.
In order to implement this function in the current task ...
Added by Jennie on Fri, 20 Mar 2020 18:37:42 +0200
Spring MVC Startup Process Analysis
This is the first post in the Spring MVC series of blogs, which will be summarized in a post.
Spring MVC is the most frequently used part of the Spring family framework.Whether it's a Spring Boot or a traditional Spring project, the Spring MVC section is used for any Web project.Therefore, programmers must be familiar with the MVC section.This ...
Added by snakebit on Thu, 19 Mar 2020 06:09:58 +0200
Write Spring Boot Starter from scratch
Spring Boot provides convenience for developers.
This article describes how to write Starter so that developers can reuse their own or project group's code.
Code download address: https://gitee.com/jxd134/Spring-Boot-Greeter-Starter.git
1 new project
The project is built on Maven and consists of the following three modules:
Greeter Library: ...
Added by ace_lovegrove on Tue, 17 Mar 2020 17:41:45 +0200