❤️ — Spring from introduction to God -- Spring integrates MyBatis

The persistence layer framework used before is Mybatis. Now Mybatis framework is integrated into Spring framework and managed by Spring. Its core idea is to store the implementation class objects corresponding to Mapper in IOC container Overall idea: 1. Build the Mybatis framework in the original way 2. Build the Spring framework in the ...

Posted by subrata on Fri, 08 Oct 2021 03:45:42 -0700

The first hellosppring program for Spring basic learning

preface: Hello, guys, I'm running snail rz. Of course, you can call me snail Jun. I'm a rookie who has studied Java for more than half a year. At the same time, I also have a great dream, that is, to become an excellent Java Architect one day. This Spring basic learning series is used to record the whole process of learning the basic knowle ...

Posted by bobbyM on Thu, 07 Oct 2021 13:13:58 -0700

Client load balancing Ribbon

What is the Ribbon in Spring Cloud? We usually say that load balancing means that a request is evenly distributed to different node units for execution. Load balancing is divided into hardware load balancing and software load balancing; Hardware load balancing: such as F5, Shenxin, Array, etc; Software load balancing: such as Nginx, LVS, HAP ...

Posted by boiy on Wed, 06 Oct 2021 14:38:03 -0700

Learn the notes of fengmi mall

Fengmi mall project Create using Maven aggregation project (parent project of one Maven and child projects of multiple Maven), You can add the following to the parent project pom.xml file: <package>pom<package> [the external chain image transfer fails. The source station may have an anti-theft chain mechanism. It is recomme ...

Posted by dave007 on Tue, 05 Oct 2021 10:07:30 -0700

Common operations in Maven

Common operations in Maven 1, Maven's directory structure: Hello Project name ├─src Source code │ ├─main main program │ │ ├─java core java code │ │ └─resources configuration file │ └─test Test procedure │ ├─java test java code │ └─resources Test configuration file or resource file └─pom.xml Detailed description of ...

Posted by tentaguasu on Mon, 04 Oct 2021 14:29:01 -0700

JDBC create project and basic operation

get ready The Maven project is directly used here. The tool used is idea, the connection is Oracle (of course, the operation of mysql is almost the same). I hope you can do the code here, so as to ensure harvest. Create Maven project Create a new project, select Maven, select the jdk version, and do not use the skeleton Enter the groupI ...

Posted by basement on Sun, 03 Oct 2021 17:05:18 -0700

Summary of Health Project day7

Chapter 7 System Administration-Permission Settings 1.Privilege Control, Getting Started and Advanced with SpringSecurity [Goal] Understanding the concepts of certification and authorization [Path] 1: The concept of certification and authorization Authentication: Login (username and password)Authorization: Permissions to access system fun ...

Posted by AliceG on Fri, 01 Oct 2021 16:23:18 -0700

Practice of object-oriented design based on Java

Object oriented design practice (based on java) caiyi 2021/10/1 source: https://www.icourse163.org/spoc/course/ECNU-1464731161 Chapter I Maven Maven concept Automatically download and manage jar packages, configure build path, and have local build tools to manage, compile, test, run, package and publish java projects Maven compilation ...

Posted by bob_dole on Fri, 01 Oct 2021 14:53:38 -0700

Maven - Introduction

The notes of this article are from the dark horse video https://www.bilibili.com/video/BV1Ah411S7ZE 1. Introduction to maven (1) State analysis of traditional project management (2) Maven introduction Maven is essentially a project management tool, which abstracts the project development and management process into a project obje ...

Posted by xfluous on Wed, 29 Sep 2021 11:13:44 -0700

Simple operation using maven framework

1. Two methods of creating Maven project 1.1 the first is to use spring initializr. This configuration is the simplest, but the operation process is a little cumbersome when building a project. If there is no image, default is selected by default; Click next, Group package organization, artifact project name, 1.2 factors of packaging: jar an ...

Posted by sellfisch on Tue, 28 Sep 2021 20:27:01 -0700