Java
-
Introduction to adapter pattern of Java design pattern
This paper illustrates two adapter modes, class adaptation mode and object adaptation mode, as follows: 1. Class adapt…… -
Java – what is enum useful?
See English answers > What are enums and why are they useful? twenty-two It is something between classes and variab…… -
MySQL + spring database isolation level and performance analysis
Here, take MySQL as an example to clarify the following issues: I If a general project does not configure transactions…… -
Detailed explanation of the top ten new features of java8
“Java is still not dead―and people are starting to figure that out.” This tutorial will use simple annotated code to d…… -
Tomcat7. 0 installation configuration details (picture and text)
Note: the Tomcat server is a web server that conforms to the J2EE standard. EJB programs cannot be run in Tomcat. If y…… -
Using JSP to call JavaBean to implement super simple web page calculator example
Online standard calculator: http://tools.jb51.net/jisuanqi/jsq Online scientific calculator: http://tools.jb51.net/jis…… -
In depth analysis of the difference between Java interface and abstract class
This paper analyzes the difference between interface and abstract class in java learning, which is very important for …… -
Example sharing of deleting empty lines in text files using java
Java delete empty lines in text file -
Deploying Java Web applications online
I have built a Java Web Application on eclipse However, I am naive in making applications, that is, online deployment …… -
Detailed explanation of file operation of Java I / O Technology
In Java programming, I / O operation is through Java IO package, so the first step is to import this package. java. IO…… -
Introduction to mediator pattern of Java design pattern
The mediator pattern of Java design patterns is one of the behavior patterns. Define a mediation object to encapsulate…… -
Analysis of repeating annotations of new features of Java 8
1、 What is a repeating annotation that allows the same annotation to be used multiple times for the same declaration …… -
How to set the CPU core affinity of Java threads?
I searched previous posts on similar topics, but I couldn't find a suitable answer, so I asked this question Thank you…… -
Introduction to template method of Java design pattern
The template method pattern of Java design pattern defines the framework of an algorithm in operation, and delays some…… -
Java – using the Jackson module of scalaobjectmapper in spark 1.4 Error running job on 0
I'm running Scala 2.10 4, and runs in spark 1.4 0 cluster (based on HDFS and managed by yarn), and Jackson module 2.6.…… -
Example of Java interpreting whether there are duplicate values in the array
Use int [] array here to demonstrate @ H_ 301_ 1@ -
How to integrate java with nodej to handle CPU heavy tasks?
I am choosing the right web technology for I / O and CPU heavy tasks Nodej is an ideal choice for handling large loads…… -
Java – more efficient? Empty an object or create a new object?
How expensive is "new"? I mean, should I reuse the same object, or if the object is "out of range", should it be empti…… -
Java – dropwizard: how to stop the service programmatically
To start the service, I know one that uses the new myservice () run(args). How to stop it? I need to start and stop th…… -
Java – use the streams API to perform operations on N different elements in the collection
I'm trying to use the streams API in Java 8 to retrieve n unique random elements from the collection for further proce…… -
Four common situations of Java object JSON data conversion
1. Convert the Java object list into JSON object array and string Online JSON code inspection, inspection, beautificat…… -
Java bounded parameters in general methods
I tested finite parameters through generic methods and found some strange behavior Imagine that Class1 and class2 have…… -
Java debugging interface, Lambdas and line number
I encountered some problems updating the debugger to use Java 8 Consider the following procedures, for example: public…… -
-
Collection of methods to prohibit Ajax caching in (ASP / PHP / JSP / HTML / JS)
Ajax caching has advantages, but it also has disadvantages. Caching can sometimes lead to misoperation and affect the …… -
How do I get events when a text control loses focus?
I have a JavaFX 2 application and I need to do something when textfield loses focus But when I lose focus, I can't see…… -
Eclipse standard or eclipse IDE for Java developers?
What type of developer is each in these ides? Is one ide a superset / subset of another? What can you do with one inst…… -
Example of drag and drop function in Java Swing
Java implementation drag and drop example The drag and drop function is implemented in swing. The code is very simple …… -
Avoid repeated import in Java: inherit import?
Is there any way to "inherit" imports? Example: General enumeration: public enum Constant{ ONE,TWO,THREE } Base class …… -
Java – how to use sonarlint in eclipse
I was assigned to use sonarqube code quality However, when I download its plug-in to eclipse, I understand that it has…… -
Java for the second largest element of the array
Assume that all numbers in the array are non negative integers, and all numbers are different. -
Java – horizontal scrolling and textfield errors
I created a customtextfield I just need it to disable horizontalscrolling when I reach the last word. It should be abl……