包含标签:Java 的文章
-
Operation of and, or, XOR
The two data involved in the operation are "XOR" according to binary bits. Operation rules: 0 & 0 = 0; 0&1=1; …… -
Java knowledge necessary for testing (2) — advanced things of Java
Java advanced Class loading process Load (create class object) - > connect (verify - prepare - parse) - > class …… -
【SpringCloud】07. Communication between applications
Inter application communication HTTP vs RPC 1. Two restful invocation methods between services in spring cloud Method …… -
【SpringCloud】06. Eureka summary
1. Two notes: 1. @ enableeurekaserver - add on startup class It provides the function of service registration. After e…… -
Java knowledge necessary for testing (3) — collection and map related
Set correlation Differences among list, set and map Differences among vector, ArrayList and LinkedList Vector: dynamic…… -
Easy to remember questions in java test (I)
The author is good at c# language and will take the exam in April. Learning Java is just for the exam. How to learn th…… -
Java knowledge necessary for testing (I) — Java Foundation
Java Foundation How does Java work? The developed java source code is compiled into a platform independent bytecode fi…… -
Summary of basic problems of Java generics
Generics is a new feature of Java se 1.5. The essence of generics is parameterized types, that is, the data type opera…… -
【SpringCloud】05. High availability of Eureka
1. Simple situation 2. In order to achieve high availability of Eureka, multiple Eureka can register with each other. …… -
Source code analysis of PriorityQueue
an introduction to The PriorityQueue class is in Java 1 5 and as part of the Java Collections Framework. PriorityQueue…… -
Java virtual machine architecture
I. data type Similar to data types in the Java programming language, The data types that Java virtual machine can oper…… -
Java notes: IO streams
1. IO flow understanding I in the IO stream is the abbreviation of the word input, It means input or read. O is the ab…… -
Java notes: reflection, annotation
1、 Reflection 1. Reflection mechanism The related classes of reflection mechanism except a Java Lang. class, the rest…… -
Java notes: Java object oriented
1、 Method 1. Overview Methods can also be called functions. In other languages, the concepts and syntax of methods an…… -
Java notes: common classes
For the use of built-in classes and methods in Java, we can usually read the corresponding API documents, but we still…… -
Java notes: Collections
A collection is a kind of container object, which is used to store objects, or stored references to objects. It is not…… -
Java notes: arrays, exceptions, generics
1、 Array Array is also a reference type. Its parent class is object. It is declared with "data type []". For example,…… -
Spring Boot:The field file exceeds its maximum permitted size of 1048576 bytes
Error message: the field file exceeds its maximum allowed size of 1048576 bytes because Tomcat is embedded in springbo…… -
Spring scheduled task usage and how to use mail monitoring server
Spring related dependencies can be imported to use spring's scheduled tasks! Scheduled tasks are commonly used in deve…… -
HTTP requests for Java
After running the main method, the above code directly returns to Baidu's HTML interface This is the following common …… -
Java generates barcode, PDF and HTML FreeMarker generates HTML code according to the model
For generating HTML from Java, please refer to my article: generating HTML code according to FreeMarker model -
Spring cloud ribbon
Spring cloud implements load balancing through the ribbon. 1、 Add Maven dependency 2、 Application YML configuration …… -
Annotation based configuration in spring (7)
Annotation based configuration Since spring 2.5, you can use annotations to configure dependency injection. Instead of…… -
net. sf. jsqlparser. statement. select. PlainSelect. getGroupByColumnReferences()Ljava/util/List;
Error message: This error caused me to fail to start the project. Error reason: it is found that it is caused by the c…… -
Nacos of springcloud Alibaba
1、 Run Nacos Nacos GitHub open source address: https://github.com/alibaba/nacos Nacos official documents: https://nac…… -
Get HttpServletRequest and httpservletresponse from spring MVC
The singleton pattern most commonly used by beans in spring What about HttpServletRequest and httpservletresponse in s…… -
Shiro combat series (11): caching
The Shiro development team understands that performance is critical in many applications. Caching is the first state-o…… -
Application example of crawling blog data using java jsup
Import Maven dependencies Select the website you want to crawl (here I take crawling my own blog posts as an example) …… -
Spring (XV) declarative transaction
Declarative transaction management allows you to manage transactions with the help of configuration rather than source…… -
Summary and architecture of spring (I)
Personal description: This link is referenced in the following section: https://www.tutorialspoint.com/spring/spring_a…… -
Kisso of open source project
Kisso open source project: https://gitee.com/baomidou/kisso 1、 Introduction Kisso = cookie SSO cookie based SSO middl…… -
Handler message under Android
The implementation principle of handler message in Android is studied: When new handler(), get the data under the curr……