#MyBlogSystems
##导入依赖
org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-devtools runtime true org.springframework.boot spring-boot-configuration-processor true org.projectlombok lombok true org.springframework.boot spring-boot-starter-test test org.mariadb.jdbc mariadb-java-client 2.7.3 org.mybatis.spring.boot mybatis-spring-boot-starter 2.2.0 com.baomidou mybatis-plus-boot-starter 3.4.3 org.springframework.boot spring-boot-starter-security src/main/resources ***.xml ***.yaml **/*.html true org.springframework.boot spring-boot-maven-plugin org.projectlombok lombok
###配置数据库
spring:
datasource:
username: root
password: 12345
driver-class-name: org.mariadb.jdbc.Driver
url: jdbc:mariadb://localhost:3306/blogSys?useUnicode=true&characterEncoding=UTF-8
###pojo类
1.User (用户类)
2.Comments (评论)
3.Category (导航栏)
4.Article (博文)
###Controller层
1.WebController
博客网页控制
2.UserController
用户权限后台修改博文控制
###Service层
1.BlogService
实现博客的CRUD的接口
2.UserService
实现验证用户登录
###Mapper
1.ArticleMapper
Blog的CRUD的SQL语句
2.UserMapper
继承baseMapper
###Config
1.UserSecurity
设置用户的权限



