Clustered Quartz Timing Task Framework Practice
In the daily development summary, you often encounter scenarios that require timed tasks. Simple, you can use Spring's timed task scheduling framework or Quartz.Either way, there is a problem that needs to be solved, that is, the cluster problem.Typically, a timed task can and can only run on one application instance.
premise
This projec ...
Posted by alcapone on Sun, 15 Dec 2019 03:07:14 -0800
JQuery basic use, operation style, simple animation
JQ and JS
JQ is a plug-in library written by JS, which is a JS file
Whatever can be realized by JQ, JS can be realized. What can be realized by JS, JQ may not be realized
Introduce
BootCDN: https://www.bootcdn.cn/jquery/
Local file import: < script SRC = "JS / JQ. JS" > < script >
Online introduction: < script SRC ...
Posted by Frederick on Sat, 14 Dec 2019 12:47:44 -0800
JNI development minimalist tutorial
JNI(Java Native Interface)
Java calls C/C + +, C/C + + calls a set of Java API
Preface:
Learning JNI requires knowledge of C/C + + and JNI manual
Students who want to learn, please follow my study notes NDK development learning notes
1: write native methods in eclipse
public class Java2cpp {
static {
System.loadLibra ...
Posted by bealers on Sat, 14 Dec 2019 07:28:06 -0800
jQuery source learning note 2
//Add instance properties and methods
jQuery.fn = jQuery.prototype = {
// Version, usage: $(). jquery pop up the version of jquery currently introduced
jquery: core_version,
// Correction of pointing problem (detailed explanation later)
constructor: jQuery,
// Initialization and parameter management
init: function( sele ...
Posted by ttmt on Fri, 13 Dec 2019 07:07:58 -0800
Record the charging points of AJAX
First of all, what is AJAX?
AJAX = asynchronous JavaScript and XML.
AJAX is a technology for creating fast dynamic web pages.
AJAX enables web pages to be updated asynchronously by exchanging a small amount of data with the server in the background. This means that a part of the page can be updated without reloading the entire page.
Traditional ...
Posted by dinger on Fri, 13 Dec 2019 00:46:48 -0800
Two-way one-to-many Association in JPA
scene
Introduction to JPA and HelloWorld (with code download):
https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/103473937
Implement one-way many-to-one associations in JPA:
https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/103511623
One-way one-to-many associations are implemented in JPA:
https://blog.csdn.net/BADAO_LIUMANG_QIZ ...
Posted by baselineace on Thu, 12 Dec 2019 19:47:12 -0800
Flexible layout, background zoom instance, font shadow - Ctrip mobile app
Main points:
1. Add the display:flex display effect to the parent element that needs to scale the layout, set the value of flex in the child element, and then divide it by proportion. If one subset element is 1 and the other is 2, one takes up one-third and the other two-thirds.
2. Font shadow takes up a lot of memory, not re ...
Posted by badproduce on Thu, 12 Dec 2019 08:04:08 -0800
d3.js selection.data([values[, key]]) source code parsing
Preface
Recently, I was learning d3.js. At the beginning of the selector section, there was a selection.data method. It was found that the second parameter of this method can be passed or not, and the second parameter is a function. However, there is no explanation of the usage of the second parameter in the document, so it is difficult to find ...
Posted by sonoton345 on Wed, 11 Dec 2019 23:33:47 -0800
Secondary development of POI TL
poi-tl It is a very easy to use word template generation library, with fast update response and complete document demo. Can be called the word template world's small Sabre!
Written in front
If you are familiar with or interested in word template technology, or even have been exposed to it at work, then the next content should give you somethi ...
Posted by hd_webdev on Wed, 11 Dec 2019 22:47:14 -0800
About javascript Object. hasOwnProperty, it's enough for me
Basic concepts of hasOwnProperty
The hasOwnProperty() method returns a Boolean value indicating whether the specified property exists in the object's own property (non inherited property),If the object has a property with the specified name, the hasOwnProperty method returns true, otherwise false. This method does not check properties in the ob ...
Posted by dashti on Wed, 11 Dec 2019 13:06:05 -0800