包含标签:Java 的文章
-
Introduction to builder pattern (builder pattern) of Java design pattern
Builder pattern definition: separate the construction of a complex object from its representation, so that the same co…… -
Hunting and shooting game code based on Java Swing
This paper describes the code of hunting and shooting game based on swing in Java. Share with you for your reference. …… -
Introduction to visitor pattern of Java design pattern
Visitor definition: the operation that acts on each object in an object group. It allows you to define new operations …… -
Shiro configuration method based on Spring Framework
1、 On the web Add Shiro filter to XML 2、 In spring's ApplicationContext Add Shiro configuration to XML 1. Add shirof…… -
Introduction to the chain of responsibility pattern of Java design pattern
Chain of responsibility definition: chain of responsibility (COR) attempts to process a request with a series of class…… -
Java string union method
This paper describes the method of Java string Union. Share with you for your reference. The specific implementation c…… -
-
Recommend several books to learn Java
■ Java in a nutshell: a desktop quick reference, 2nd Edition, author: David Flanagan press: O'Reilly & Assoc, publ…… -
Method of Java operating MySQL
This article describes the method of Java operating mysql. Share with you for your reference. The specific analysis is…… -
Introduction to template pattern of Java design pattern
Template pattern definition: defines the skeleton of an algorithm in an operation and delays the execution of some ste…… -
An example of stack data structure using array in Java
Stack is one of the most important data structures in Java language. Its implementation should at least include the fo…… -
Pinball game code based on Java Swing
This paper describes the pinball game code based on swing in Java. Share with you for your reference. The main functio…… -
Example of using JDBC to access SQL Server 2008 database in JSP
Direct access to the database by jdbc driver advantages: 100% Java, fast and cross platform disadvantages: you need to…… -
Use cases of drop-down menu, pop-up menu and jtabbedpane components in Java Swing
Menu is the most commonly used component in GUI. It is not a subclass of component class and cannot be placed in ordin…… -
Java uses circular linked list structure to solve Joseph problem
This paper describes the method of solving Joseph problem with circular linked list structure in Java. Share with you …… -
Spring MVC framework construction and configuration method and detailed explanation
Now the mainstream web MVC framework is spring MVC in addition to struts. Therefore, this is also the mainstream frame…… -
Use instances of table (JTable) and tree (JTree) components in Java Swing
1: Table (JTable): 1. Basic concepts: Table (JTable) is a new component of swing, which is mainly used to display dat…… -
Detailed explanation of transaction management examples in spring
This article describes the transaction management in spring as an example. Share with you for your reference. The spec…… -
Method of cleaning DNS cache with Java
This article describes the method of cleaning DNS cache with Java. Share with you for your reference. The specific ana…… -
Decorator Pattern details and code examples of Java design patterns
Decorator mode can dynamically add capabilities to existing objects. Next, I will use a simple example to demonstrate …… -
Composition of basic Java tutorials
We have tried to define classes. To define a class is to create a new type. With classes, we then construct objects of…… -
Analyze the differences between abstract classes and interfaces in Java in detail
In the Java language, abstract class and interface are two mechanisms that support abstract class definition. It is pr…… -
Shell script realizes automatic installation of JDK in Linux system
A: The machine on which this script runs, Linux B: the machine on which the JDK is to be installed, Linux First, on ma…… -
Basic Java Tutorial: Hello world to object oriented
Java is a completely object-oriented language. Java realizes the concept of "cross platform" through the running mecha…… -
Java functional programming (8): string and method reference
Chapter 3 string, comparator and filter Some methods introduced by JDK are very helpful for writing functional code. W…… -
Java file read and write operation details
Directly on the code, with detailed notes and diagrams, I believe you understand! -
Java string similarity algorithm
This paper describes the Java string similarity algorithm. Share with you for your reference. The specific implementat…… -
Summary of sorting methods of sets and arrays in Java
According to the agreement, when using java programming, you should use the existing class library as much as possible…… -
Java, the most effective way to pass string array as method parameters
Why passing {a, B, C} to a method doesn't work? 7 String[] args = {"a","b","c"}; method(args); private void method(S…… -
Java – is sorting by a non transitive comparator “working”?
If I report to collections What happens if sort provides a non transitive comparator? Can I enter an infinite cycle? A…… -
Java – spring boot – how to specify an alternate boot class? (multiple entry points)
I want to add an alternative entry point to my spring boot application I'd rather think of it as a fat pot Is that pos……