搜索内容

包含标签:Java 的文章
  • Map

    primary coverage Learning objectives Chapter 1 map set 1.1 general In real life, we often see such a collection: IP ad……
    Java
  • Simple dependency injection using java annotations

    The code is as follows:
    Java
  • Maven Foundation

    Maven introduction What is Maven Maven's correct pronunciation is[ ˈ mev ə n] , not "horse plague" and other plagues. ……
    Java
  • Enterprise authority management system

    brief introduction This project uses spring + spring MVC + mybatis framework integration for enterprise background per……
    Java
  • Cookie&Session

    primary coverage 1. 会话技术 1. Cookie 2. Session 2. JSP:入门学习 Conversation Technology 1. 会话:一次会话中包含……
    Java
  • How Java compares floating point numbers correctly

    Look at the following code to compare D1 and D2 floating-point numbers. What will be the output result? double d1 = .1……
    Java
  • Maven Foundation

    Maven introduction What is Maven Maven's correct pronunciation is[ ˈ mev ə n] , not "horse plague" and other plagues. ……
    Java
  • Collection, generic

    primary coverage Learning objectives Chapter 1 collection 1.1 collection overview Since both sets and arrays are conta……
    Java
  • Request&Response

    I reviewed the contents of request and response in these two days. primary coverage HTTP * 概念:Hyper Text Transfer P……
    Java
  • Multithreading

    primary coverage Learning objectives Chapter 1 multithreading Before, the programs we learned were executed from top t……
    Java
  • EL&JSTL

    primary coverage 1. JSP: 1. 指令 2. 注释 3. 内置对象 2. MVC开发模式 3. EL表达式 4. JSTL标签 5. 三层架构 JSP: 1. ……
    Java
  • List, set, data structure, collections

    primary coverage Learning objectives Chapter I data structure 1.1 what is the use of data structures? When you use the……
    Java
  • Ajax&Json

    AJAX 1. 概念: ASynchronous JavaScript And XML 异步的JavaScript 和 XML * 异步和同步:客户端和服务器端相互通信的基础上……
    Java
  • JQuery

    Today's content JQuery Foundation: JQuery advanced: JQuery Basics 1. 概念: 一个JavaScript框架。简化JS开发 * jQuery是……
    Java
  • Java implements multi-threaded download and supports breakpoint continuation

    Full code: https://github.com/iyuanyb/Downloader The implementation of multi-threaded download and breakpoint continua……
    Java
  • Filter&Listener

    Filter: filter 1. 概念: * 生活中的过滤器:净水器,空气净化器... * web中的过滤器:当访问服务器的资源时,过滤器可以将……
    Java
  • Redis Foundation

    primary coverage redis 1. 概念 2. 下载安装 3. 命令操作 1. 数据结构 4. 持久化操作 5. 使用Java客户端操作redis Re……
    Java
  • Spring getting started notes

    Chapter 1 spring overview 1.1 spring overview 1.1. 1 what is spring Spring is a lightweight open source framework for ……
    Java
  • Java basic syntax

    Sort out some knowledge points of learning java basic syntax before. JRE and JDK If we want to run an existing Java pr……
    Java
  • Xml

    Today I reviewed XML and learned about jsup. primary coverage XML 1. 概念 2. 语法 3. 解析 XML: 1. 概……
    Java
  • 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……
    Java
  • 【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. ……
    Java
  • 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
  • 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
  • Java GUI quick start

    There are two toolkits for writing GUI in Java, AWT and swing. Swing is an extension of AWT. Swing has more components……
    Java
  • Design pattern – singleton pattern

    Design pattern It is a summary of the experience of classification, cataloging and code design that is repeatedly used……
    Java
  • Window – install Java

    JDK Download Official website: https://www.oracle.com/java/technologies/javase-jdk8-downloads.html Baidu online disk: ……
    Java
  • Some thoughts on code refactoring

    Recently, the company engaged in zhongtaihua again. I was lucky to participate in the reconstruction of one of the pro……
    Java
  • 【SpringCloud】03. Design principles of microservices

    Design principles of microservices: 1、 AKF split principle The industry has a simple concept for scalable system arch……
    Java
  • Exploring the principle of threadpoolexcutor analyzing the implementation principle of AQS through reentrantlock

    an introduction to Thread pool (English: thread pool): a thread usage mode. Too many threads will bring scheduling ove……
    Java
  • Java thread Basics

    preface What is a thread? Threads, Sometimes called lightweight process (LWP), it is the smallest unit of program exec……
    Java
  • 【SpringCloud】08. Client load balancer: Ribbon

    Client load balancer: Ribbon Ribbon's core for soft load balancing: Ribbon main components: technological process: 1. ……
    Java