Using Extended Events to Get Session Level Waiting Information in SQL Server and Enhancement of Session Level Waiting Information in SQL Server 2016

The source of this paper is: http://www.cnblogs.com/wy123/p/6835939.html    What is waiting Briefly explain what waiting is:When an application initiates a Session request to SQL Server, the Session request requests the required resources during execution in the database.For example, you may apply for memory resources, locks on tables, physi ...

Added by iffy on Tue, 02 Jul 2019 02:01:23 +0300

Java Servlet Detailed Tutorial

Servlets are Java classes that comply with the Java Servlet API, and these Java classes can respond to requests. Although Servlets can respond to any type of request, they are most widely used in response to web requests. Servlets must be deployed in Java servlet containers before they can be used. Although many developers use it Java Server Pa ...

Added by nca on Tue, 02 Jul 2019 00:49:02 +0300

SpringBoot Writes API Documents with Springfox+swagger 2

With the separation of front-end and back-end, excuse documents become particularly important. springfox automatically generates API documents in the form of annotations. With it, restful API can be written easily. swagger is mainly used to show API documents generated by springfox. Official address: http://springfox.github.io/springfox/ Genera ...

Added by hostcord on Tue, 02 Jul 2019 00:05:06 +0300

Android Technology Review Series (7) - Android Application Resources _2

This chapter gives a brief description of Drawable resources. What you need to know is the various types of Drawable resources and their usage scenarios. Common types are Bitmap File, Nine Patch Drawable, StateList Drawable, Gradient Drawable. Drawable resources refer to graphics that can be drawn on the screen and retrieved or applied to ...

Added by examancer on Mon, 01 Jul 2019 02:17:18 +0300

What are the activation modes of activity? What does it mean? (three)

FLAG_ACTIVITY_NEW_TASK Label Configuration form: <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.open.android.task5"> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@str ...

Added by Stephen68 on Sun, 30 Jun 2019 04:14:17 +0300

Four common ways of parsing XML

Four common ways of parsing XML 1. Introduction to XML Language XML is an extensible markup language. It can define semantic markup (tag), which is a meta-markup language. Unlike HTML, which is a hypertext markup language, XML can only use specified tags. For XML, users can define tags they need. Tree model. XML (eXtensible Markup Language) ...

Added by kiltannen on Sun, 30 Jun 2019 02:13:42 +0300

Strts2 dynamic methods and issues used between versions

1.An error occurred when Struts2 used the dynamic method Universal Functional Test (Version 2.5).I thought I made a mistake, but I went back and checked for it, and then I used the (version 2.3) test.No errors were found in version 2.3.After the official website query, default.properties default configuration in version 2.5, as shown in the fig ...

Added by Mr_jmm on Sat, 29 Jun 2019 21:46:20 +0300

Introduction to ProtocolBuffer Learning

Protocol Buffer is an open source serialization and deserialization mechanism similar to xml and JSON parsing, but Protocol Buffer is more flexible, efficient and simple. Protocol buffer is a data exchange format, which is independent of language and platform. Because it is a binary format, it is much faster than using xml for data exchange. It ...

Added by robburne on Fri, 28 Jun 2019 00:55:41 +0300

corosync + pacemaker + crmsh High Availability Cluster

Principle: corosync provides the function of message layer of cluster, transfers heartbeat information and cluster transaction information, and monitors heartbeat by multicast between multiple machines. pacemaker works in the resource allocation layer, provides the function of resource manager, and configures resources with crmsh, the comman ...

Added by trippyd on Thu, 27 Jun 2019 20:54:32 +0300

Brief Introduction to spring Framework

Spring is a layered JavaSE/EE full-stack (one-stop) lightweight open source framework. It was created to address the complexity of enterprise application development. One of the main advantages of the framework is its layered architecture, which allows you to choose which component to use, while providing an integrated framework for J2EE appli ...

Added by thedon on Thu, 27 Jun 2019 00:50:58 +0300