Tag:java

  • “JavaSE “Lambda Expressions

    Time:2024-6-13

    Lambda expression summary functional interface explanatory note grammatical Basic Use of Lambda Expressions Variable Capture Use of Lambda in Collections 🍌forEach() 🍌sort summarize summary Lambda expressions are an important new feature in Java SE 8, based on the mathematical λ-arithmetic of the name, which can also be called closures.It allows us to passdisplayed formulaSubstitute Functional […]

  • The Appeal of Auto-assembly: Spring Boot vs Traditional Spring

    Time:2024-5-30

    What are some of the certificates in the IT industry that are highly valued? Article Catalog What are some of the certificates in the IT industry that are highly valued? preamble make a distinction Project Configuration: Dependency management: Embedded server: Development Experience: an actual example Sample Spring project: Sample Spring Boot project: summarize Column Highlights […]

  • JDBC Connecting to MySQL

    Time:2024-4-30

    catalogs I. Beginning II. Introduction 1, the concept of JDBC 2、Functions of JDBC 3, JDBC common interfaces and classes III. Database creation (MySQL) 1. Connecting to MySQL (1), register the driver (2) Getting Connected (3), get the executor connection (4), execute the SQL statement, and accept the results (5), processing results (6) Release of resources […]

  • SpringBoot [SpringBoot] springboot auto-assembly principles

    Time:2024-4-28

    Article Catalog What is automated assembly SpringBoot auto-assembly concrete operation What is automated assembly Auto-Configuration is one of the core features of the Spring Boot framework.It automatically configures and assembles the various components required by a Spring application by scanning the application’s classpath and dependencies. In traditional Spring applications , developers need to manually configure […]

  • Java Microservices Distributed Split-Repository-Split-Table ShardingSphere – ShardingSphere-JDBC

    Time:2024-4-23

    preamble Apache ShardingSphere is a distributed database ecosystem that transforms any database into a distributed database and enhances it with capabilities such as data sharding, elastic scaling, encryption, and more. Apache ShardingSphere is designed with the philosophy of Database Plus to build a standard and ecosystem for the upper layers of heterogeneous databases. It focuses […]

  • Logistics transportation information management system design and implementation

    Time:2024-3-29

    catalogs​​​​​​​ 1 System overview 2 System-related technologies 3 Requirements analysis 3.1 Needs analysis concepts 3.1.1 User workflow analysis 3.1.2 Analysis of user work requirements 3.2 System Functional Requirements Analysis 3.3 System Functional Use Case Analysis 3.3.1 Participants 3.3.2 Participant use case analysis 3.4 System feasibility analysis 4 System Design 4.1 Overall system functional design 4.2 […]

  • MySQL Installation Tutorial

    Time:2024-3-25

    I. MySQL Download (Installation Version) 1. Go to the official MySQL website Official website address:https://www.mysql.com/ 2. Click [DOWNLOADS]. 3. Scroll down and click [MySQL Community (GPL) Downloads] to download MySQL Community Edition. 4. Click [MySQL Installer for Windows] to download the MySQL installer. 5. You will then come to the MySQL latest version download page.(”MySQL […]

  • Downloading, installing, and configuring JDK 8

    Time:2024-3-11

    catalogs Introduction to JDKsummaryVersion DescriptionBasic components of the JDK Installation of JDK on windowsdownloadingmountingdeployment Installing the JDK on Linuxdownloadingmountingdeployment Introduction to JDK summary Synopsis:Java Development Kit (JDK) is Sun’s (acquired by Oracle) software development kit for Java developers. Since the introduction of Java, the JDK has become the most widely used Java SDK (Software development […]

  • Flink CDC in Detail

    Time:2024-3-8

    catalogs I. Introduction to CDC ?Flink CDC case practiceThree, Flink-CDC 2.0IV. Analysis of core principles I. Introduction to CDC ? What is CDC? CDC stands for Change Data Capture. The core idea is to monitor and capture database changes (including insertion, update, and deletion of data or data tables, etc.), record these changes in the […]

  • SpringBoot Dynamic Timed Tasks

    Time:2024-3-7

    The timed task function in this article (Add, delete, change, start, pause) Without further ado, straight to the code, you guys can use it with direct CV!!!! Thread pool configuration class for executing timed tasks import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.scheduling.TaskScheduler; import org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler; @Configuration public class SchedulingConfig { @Bean public TaskScheduler taskScheduler() { ThreadPoolTaskScheduler taskScheduler […]