WEB--EL&JSTL (IDEA version)
JSP:
1. instruction
*Function: used to configure JSP pages and import resource files
* format:
<% @ instruction name property name 1 = property value 1 property name 2 = property value 2...% >
* classification:
1. page: configure the
*contentType: equivalent to response.setContentType() ...
Posted by shadow1200 on Fri, 13 Mar 2020 01:13:27 -0700
Line tree of data structure and algorithm
Catalog
(1) definition
(2) Custom line segment tree
1. Create line segment tree according to array
2. Interval query operation of line segment tree
3. Single update operation of line tree
(3) Time complexity analysis
(1) definition
The line tree is a balanced binary search tree. What is balanc ...
Posted by phdatabase on Thu, 12 Mar 2020 01:58:38 -0700
Getting started with Quartz
1, About Quartz
1.quartz is an open source and rich "task scheduling library", which can be integrated into any java application.
2.quartz is mainly divided into three components: task Job, Trigger trigger and Scheduler.
quartz architecture:
2, Introduction to the three components ...
Posted by php2MySQL on Wed, 11 Mar 2020 23:47:17 -0700
Node.js common tools
util is a core module of Node.js, which provides a collection of common functions to make up for the lack of too simplified functions of core JavaScript.
The method of use is as follows:
const util=require("util");//Introduce util Modular
//Define an asynchronous function
async function fn(){
return "hello cyy~";
}
//Turn asynchronous fu ...
Posted by mcguinkc on Wed, 11 Mar 2020 00:55:31 -0700
Serializable details: code validation Java serialization and deserialization
Note: This paper is a detailed explanation of Serializable (1). The last two paragraphs are ambiguous in translation (not translated for the time being), which will be supplemented in subsequent Serializable (2).
Introduction: This article is translated according to JDK English document. This translation is not completely literal translation a ...
Posted by oldefezziwig on Tue, 10 Mar 2020 22:53:22 -0700
Namespace and uninstallation of 18 class and the use of JVM
The details of class namespace and unload and the use of JVM
Namespace:
Each class loader has its own namespace, which consists of the class loader and the classes loaded by all the parent class loaders.
In the same namespace, [two classes with the same full name (including the package name of the ...
Posted by everurssantosh on Tue, 10 Mar 2020 21:12:47 -0700
3.kotlin Notes_Agent
1. Agent mode
interface Base {
fun printMessage()
fun printMessageLine()
}
class BaseImpl(val x: Int) : Base {
override fun printMessage() { print(x) }
override fun printMessageLine() { println(x) }
}
class Derived(b: Base) : Base by b {
override fun printMessage( ...
Posted by irving on Tue, 10 Mar 2020 09:12:31 -0700
What did Runtime do during the startup of Runtime objc4-779.1 App?
Knowledge preparation
First of all, we need to know a scenario. We click on the application on the screen, and then we can see that the application is fully displayed and can be operated. In this process, the system, runtime and our own code have done a lot of work, and many excellent blogs have descr ...
Posted by smerny on Tue, 10 Mar 2020 04:09:32 -0700
Learn in depth the handwritten digit recognition of Tensorflow entry case, and learn from you
premise
Language: python
Framework: tensorflow
The introduction of in-depth learning is handwritten digit recognition, which is the same as the first helloworld of our language
You, the most basic and the least white, should start with the Keras framework. The background of the Keras framework i ...
Posted by xsgatour on Tue, 10 Mar 2020 02:57:55 -0700
Learn java - Day12 - InputStream details of IO stream
1 IO
BigDecimal/BigInteger
Summary:
BigDecimal: used to solve precise floating-point operations.
BigInteger: used to solve very large integer operations.
Create object:
BigDecimal.valueOf(2);
Common method: add(BigDecimal bd): add
Subtract (BigDecimal BD): subtract
multiply(BigDecimal bd): do ...
Posted by archangel_617b on Tue, 10 Mar 2020 00:50:08 -0700