CSS counter

Automatic Numbering with CounterCSS counters are like variables. Variable values can be incremented by CSS rules (which track the number of times they are used). To use CSS counters, we will use the following attributes:counter-reset - Create or reset counterscounter-increment - Increase counter valueContent - Insert generated contentcounter() ...

Posted by k.soule on Thu, 10 Oct 2019 05:11:59 +0200

Processing of Activiti6 with 6 Parallel Gateway under Springboot

Explain If parallel approval is required in the process, we can use parallel gateway to process, such as the following flow chart: The xml information is as follows: <?xml version="1.0" encoding="UTF-8"?> <bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:b ...

Posted by cainscripter on Wed, 09 Oct 2019 14:38:40 +0200

Do you know about Android threads and thread pools?

In Android, threads are divided into main threads and sub-threads. The main interface is used to interact with users and perform UI-related operations, while sub-threads are responsible for time-consuming operations. If time-consuming operations are performed in the main thread, the program will not be able to respond in time. Therefore, time-c ...

Posted by lm_a_dope on Wed, 09 Oct 2019 03:06:16 +0200

AspectJ usage example

1. Enabling AspectJ annotation support in Spring 1 To use AspectJ annotations in Spring applications, you must include AspectJ class libraries under classpath: aopalliance.jar, aspectj.weaver.jar, and spring-aspects.jar maven Introduces <dependency> <groupId>org.springframework</groupId> <artifactId>spring-aop< ...

Posted by bibby on Wed, 09 Oct 2019 01:11:21 +0200

Use of SimpleAdapter in Android

1. Brief introduction Simple Adapter with Spinner can display multiple controls (such as a combination of text and images) in the list item of Spinner. The display effect is as follows. Here is an example of initializing SimpleAdapter. In the constructor of SimpleAdapter: the first parameter is the de ...

Posted by JustFoo on Tue, 08 Oct 2019 21:12:43 +0200

The Beauty of unity3d Data Encryption/Decryption

Links to the original text: https://blog.csdn.net/ldy597321444/article/details/73468574   using System.Collections; using System.Text; using System.Security.Cryptography; using System; using UnityEngine; using UnityEngine.UI; // // ...

Posted by mantona on Sun, 06 Oct 2019 13:13:18 +0200

dubbo Initial Microsoft Service Client Server Configuration

Links to the original text: http://www.cnblogs.com/JAYIT/p/9645728.html Normally, a service will not only be a client or a server. Generally, microservices are services and services calling each other. So, how to configure them? Nex ...

Posted by atticus on Sun, 06 Oct 2019 05:39:58 +0200

Summary of Three Ways to Create Objects for Spring Self-study

  Person class (with or without parametric construction method): package com.li.spring; public class Person { private String name; private int age; public Person(){ System.out.println("Initial constructor"); } public void setName(String name) { System. ...

Posted by TANK on Sun, 06 Oct 2019 01:21:25 +0200

2. Analysis of spring-import tags;

Links to the original text: https://my.oschina.net/u/1590001/blog/268225 For spring configuration file writing, I think that for people who have experienced huge projects, there is tha ...

Posted by raquelzinha on Sun, 06 Oct 2019 00:44:48 +0200

net Implements a Simple General Query Data and Exports Excel Web Page

Background:Provide a simple web page temporarily for others to browse some data in the database (Oracel, MSSQL) and export Excel.Support adding or modifying sql at any time in the configuration file.   Realization:Store sql statements and other information in an xml file. The front-end page provides a drop-down box to select different types o ...

Posted by hbradshaw on Fri, 04 Oct 2019 12:13:02 +0200