Personal simple email website (built in SpringBoot environment)
A personal email website (built based on SpringBoot environment)
At present, you can only send some simple content. If you have any good suggestions, you can comment!!
I am still studying
Source address: https://gitee.com/mehao123/sendMail/tree/master
effect
Main interface before login
Login interface
Main interface after login
Se ...
Posted by realchamp on Wed, 01 Dec 2021 03:09:27 -0800
Quickly integrate SSM from scratch, beginner's package will
The key to integrating SSM is the configuration of several xml
get ready:
1. Idea (after tomcat is configured, the plug-in freeMybatis can be installed to improve efficiency. It's not difficult to install plug-ins. Baidu experience has it)
2. Download MySql database and visual m ...
Posted by thorpe on Mon, 22 Nov 2021 15:22:02 -0800
Common Java classes - comparison classes
Comparison class
introduce
Under normal circumstances, objects in Java can only be compared: = = or! =, Comparison of > or < is not possible.
However, in the development scenario, we need to sort multiple objects, that is, we need to compare the size of objects.
How to implement: you need either of the two interfaces: Comparable or Co ...
Posted by buckboru on Thu, 18 Nov 2021 08:27:24 -0800
One-to-many relationship processing in Mybatis basic learning
Preface:
Hello, ladies and gentlemen, I'm running like a snail rz. Of course you can call me Snail Jun. I'm a beginner who has studied Java for more than half a year. At the same time, I have a great dream that I will become an excellent Java architect one day.
This Mybatis Basic Learning series is used to record the whole process of ...
Posted by ataylor20 on Fri, 12 Nov 2021 13:55:50 -0800
Java learning notes: container
container
A Collection, also known as a Collection, is used to hold and manage data.
1. Singleton set
1.1 concept
Singleton set: store data one by one.
Collection interface: it is the root interface of a singleton collection and has two sub interfaces. It is divided into List interface (orderly storage, repeatable, "dynamic" arra ...
Posted by kabucek1 on Mon, 08 Nov 2021 16:13:12 -0800
Maven installation and configuration (detailed version)
1, Install Maven
Installation path: click the link to download the required version directly Maven official website
1, Download method of the latest version 1. Click the link to enter Maven's official website 2. Find Download Files in the left column to Download
2, Download methods of all versions (including new and old versions ...
Posted by allexx_d on Fri, 05 Nov 2021 23:10:03 -0700
EasyExcel third bullet + hutool POI are used together to export more complex Excel.xlsx + to calculate growth rate, year-on-year month on month ratio, proportion, etc
1, Review
Following the last "dynamic header easyExcel import and export"( https://blog.csdn.net/qq_37337660/article/details/114680512)", And the last dynamic header import( https://blog.csdn.net/qq_37337660/article/details/110288393 )”After that. We have a third wave easyExcel Torture, this time export complex Excel, by the w ...
Posted by Rithiur on Thu, 04 Nov 2021 19:59:56 -0700
Java knowledge combing 03 | detailed explanation of internal classes
1, Definition of inner class
You can put the definition of one class inside the definition of another class, which is the inner class.
2, Type of inner class
In Java, inner classes are mainly divided into member inner classes, local inner classes, anonymous inner classes and static inner classes.
1. Member internal class
Member interna ...
Posted by empnorton on Wed, 03 Nov 2021 13:38:15 -0700
Integrated Shiro framework for SpringBoot basic learning (Part 2)
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 SpringBoot basic learning series is used to record the whole process of learning the ...
Posted by wrapper on Mon, 25 Oct 2021 07:56:13 -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