The difference between include instruction and include action element in jsp

The difference between include instruction and include action element in jsp In short: The introduced resource and the original resource of the include action element can be executed independently, and the include instruction needs to be merged The include action element run contains and only contains the run results (only th ...

Added by micmania1 on Fri, 27 Dec 2019 20:26:05 +0200

Scala development environment construction

At the beginning, I used eclipse development tools. After installing Scala, download the Scala Eclipse Plug-in and copy the feature s and plugin s in the compression package to the corresponding directory of eclipse tools. However, using Eclipse Maven to develop Scala projects is a bit of a pain. So, toss to toss to give up and ...

Added by AjithTV on Mon, 09 Dec 2019 03:52:28 +0200

IDEA uses the native java environment

idea has its own jre in its installation package. idea uses its own jre by default If you want to use your own jdk, you can find idea.bat in bin directory :: --------------------------------------------------------------------- :: Locate a JDK installation directory which will be used to run the IDE. :: Try (in order): IDEA_JDK, idea%BITS%.exe. ...

Added by rreynier on Wed, 06 Nov 2019 17:14:01 +0200

MQTT message exceeds the maximum message, message size length

In the project, mqtt is contacted by emqtt , when the number of messages is too large, you will be prompted Disconnected (32109) - java.io.EOFException at org.eclipse.paho.client.mqttv3.internal.CommsReceiver.run(CommsReceiver.java:181) at java.util.concurrent.Executors$RunnableAdapter.call(Execut ...

Added by peanutbutter on Sat, 26 Oct 2019 17:33:34 +0300

All six forms and codes of class template friend

http://blog.csdn.net/caroline_wendy/article/details/16916441 All six forms and codes of class template friend There are many differences between friend of class template and friend of common class. The main reason is that class templates contain template parameters, which will lead to many matchin ...

Added by Ferdog on Thu, 03 Oct 2019 19:14:23 +0300

EMQX configuration and Android connection

EMQX configuration I use Windows, so I configure the Windows version. Download on the official website first emqx Installation is simple 1. Select the Windows version through emqx.io or github and download the.zip package to be installed. 2 decompression package 3 Open Windows command line w ...

Added by karenn1 on Wed, 02 Oct 2019 18:32:16 +0300

Using mqtt protocol in java

MQTT: MQTT (Message Queuing Telemetry Transport) is a lightweight communication protocol based on publish/subscribe mode, which is built on TCP/IP protocol and published by IBM in 1999. The biggest advantage of MQTT is that it can provide real-time and reliable messaging services for connecting remote d ...

Added by netzverwalter on Tue, 01 Oct 2019 23:26:00 +0300

LibGDX Rebuilding Flappy Bird - Packaging Resources

Original Link: https://my.oschina.net/u/2432369/blog/610413 Modify Android startup icon and name First, we need to replace the default startup icon for Android projects.There is a spe ...

Added by danielhalawi on Wed, 11 Sep 2019 00:41:52 +0300

201871010134-Summary of Zhou Yingjie's Second Week Study of Object-Oriented Programming (java)

project content Which course does this assignment belong to? https://www.cnblogs.com/nwnu-daizh/ What are the requirements for this assignment? https://www.cnblogs.com/nwnu-daizh/p/11475377.html Target of homework learning Learn and master Java Application program structure; Learn and master the da ...

Added by michalchojno on Mon, 09 Sep 2019 15:58:38 +0300

Detailed introduction of "equals" and "==" to get rid of the puzzlement of "==" and equals thoroughly

(1) Rules of Judgment on "==" Basic data type, using "==" is a numerical judgment Referring to data types, using "==" is for address determination public static void main(String[] args) { int a = 3; int b = 3; ...

Added by mbbout on Tue, 13 Aug 2019 14:31:01 +0300