Research on ueditor file upload

I have written a version of ueditor before. I feel that ueditor has been upgraded very quickly and in a twinkling of an eye. Today, a person asked this related question, which happens to be familiar with. First of all, I won't talk about the most basic usage, just the file uploaded. First of all, the file upload has changed a lot, so let's ta ...

Added by er0x on Thu, 04 Jul 2019 00:49:33 +0300

Implementing Short Message Communication in java--Complete Tutorial

Preface Short message transmission is now an indispensable part of the project. How can we push information to other people's mobile phones through web pages? Simple, simple coding! After reading this article, we only need to know what to send in order to realize the sending of short messages in the future. To whom? OK, the code is as follow ...

Added by delfa on Wed, 03 Jul 2019 01:48:30 +0300

java generates and initializes objects by reflection

java generates and initializes objects by reflection > In the blog Read File Complete of java _____________ After reading the csv file, we need to convert the object of the csv file to our own DO object. Is there any way that I can directly penetrate into a DO class object, realize the generation of the object internally, and initialize it ...

Added by danoush on Mon, 01 Jul 2019 21:46:22 +0300

RocketMQ--RocketMQ retry mechanism

RocketMQ Retry Mechanism Message retries are divided into two types: retries for Producer sending messages and retries for Constumer consuming messages. 1. Producer End Retry Producer-side retry refers to a failure of Producer to send a message to MQ, such as a failure of producer to send a message to MQ due to network reasons. Take a look at t ...

Added by jrolands on Mon, 01 Jul 2019 19:28:42 +0300

Android Event Processing Mechanism

Android Event Processing Mechanism If you want to process messages in Android, such as a classic application scenario: Update the UI after receiving a network response, just add a Handler member to the thread that responds to the event, as follows public class MainActivity extends Activity { Handler messageHandler = new MyMessageHandler(); ...

Added by jonnypixel on Mon, 01 Jul 2019 04:37:42 +0300

Logger.getLogger(CLass)

System.out.println() has been used for debugging before. But deploying a project in production environment in this way will degrade the performance of the application because of the numerous console outputs. Log4J becomes a powerful tool for balancing the development and deployment of applications. Using Log4J in a project is not a difficu ...

Added by Heavy on Sun, 30 Jun 2019 04:28:18 +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

Deployment of Hadoop 2.7.3 distributed cluster memo on docker 1.7.03.1 single machine

Deployment of Hadoop 2.7.3 distributed cluster memo on docker 1.7.03.1 single machine [TOC] statement All the articles are my technical notes. Please indicate where they came from when they were reproduced. https://segmentfault.com/u/yzwall 0 docker version and hadoop Version Description PC: ubuntu 16.04.1 LTS Docker version: 17.03.1-ce OS/Arc ...

Added by flowingwindrider on Fri, 28 Jun 2019 02:42:15 +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

File upload using Apache open source class libraries in Servlet

With specific examples, this paper describes how to upload files in Servlet s using packages provided by the Apache open source class library.The reference book for this article is the third edition of Tomcat and Java Web Development Technical Details by Sun Weiqin. The software versions used in this paper are: Window10, JDK10, Tomcat9.The Dow ...

Added by mazzzzz on Thu, 27 Jun 2019 19:15:44 +0300