Mybatis learning - configuration analysis

front word : \textcolor{green} {Preface:} preface: 💞 In the previous article, we learned what Mybatis is and also wrote our first Mybatis program. Next, let's take a look ...

Posted by Patioman on Sat, 06 Nov 2021 16:41:08 -0700

Mybatis implements simple CRUD principle and example analysis notes [Full]

Mybatis implements simple CRUD (addition, deletion, modification and query) Database used: CREATE DATABASE `mybatis`; USE `mybatis`; DROP TABLE IF EXISTS `user`; CREATE TABLE `user` ( `id` int(20) NOT NULL, `name` varchar(30) DEFAULT NULL, `pwd` varchar(30) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; insert i ...

Posted by numtre on Mon, 01 Nov 2021 10:48:00 -0700

mabatis learning notes (only record your learning process)

set up a database create database 'mybatis' use 'mybatis'; create table 'user'( 'id' int(20) not null primary key, 'name' varchar(30) default null, 'pwd' varchar(30) default null )engine = innodb default charset= utf-8; insert into 'user'('id','name','pwd') values (1,'Mad God','123456'), (2,'Mad God','123456'), (3,'Mad God','123456'); // ...

Posted by MNS on Tue, 12 Oct 2021 17:59:49 -0700

SSM infrastructure integration

SSM infrastructure integration Before integrating a spring + spring MVC + mybatis project, we need to understand their respective functions? What is Spring, what is it used for, and what is its main function in SSM? Spring is an open source lightweight Java development framework, which is used to simplify the development of applications (for ...

Posted by jordanwb on Mon, 11 Oct 2021 12:34:50 -0700

[Spring] IoC Control Reverse: What is IoC? What is a container? Write a simple Spring program to see!

Two months ago, I completed the Spring Framework with the Spring Framework tutorial video of Mr. Wang He, the power node of station b. During the learning process, I tapped the code involved in the video line by line, and sorted out the materials related to the introduction of Spring. Here I record my notes and some insights during the learning ...

Posted by ozman26 on Tue, 05 Oct 2021 09:27:35 -0700

[SSM] use SSM framework to realize data paging management

When writing projects using SSM framework, sometimes the data obtained from the database is too large and will not be displayed in the web page. In order to avoid this situation, data paging can be used to effectively manage data. What's wrong? I hope you guys can correct me! 1. First look at the effect 2. To complete the paging function, it ...

Posted by jonzy on Wed, 22 Sep 2021 01:14:35 -0700

Spring, spring MVC and Mybatis framework integration configuration template (ready to use)

✍, Spring, spring MVC and Mybatis framework integration Every time you build an SSM framework integration environment, you always need to configure dependencies in advance. Every time you add a configuration, you need to look through the official website documents or notes, which is a waste of time and sometimes cited errors.This paper integra ...

Posted by pmiller624 on Mon, 20 Sep 2021 18:46:09 -0700

Teach you how to integrate SSM to implement a simple CRUD project

Project notes 1, Project introduction This is a simple CRUD(Create Retrieve Update Delete) web page project based on SSM framework. The IDE used is IDEA2021.1. Due to the time problem, this article will introduce the first two parts. The problems and solutions that are easy to encounter in the project will be given in the following articl ...

Posted by bradcis on Sun, 05 Sep 2021 13:41:59 -0700