博客项目
文章平均质量分 86
个人博客项目学习
万千....
这个作者很懒,什么都没留下…
展开
-
博客管理后台(码神之路)
一、管理后台搭建SpringSecurity1.搭建项目1.1 新建子模块maven工程 blog-admin导入相关maven<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocati原创 2021-09-08 09:42:45 · 2284 阅读 · 3 评论 -
博客项目优化(码神之路)
三、优化1. 统一缓存处理(优化)内存的访问速度远远大于磁盘的访问速度(1000倍起)com.lum.blog.common.cache包下新建cache注解package com.lum.blog.common.cache;import java.lang.annotation.*;/** * @author lum * @date 2021/9/5 */@Target({ElementType.METHOD})@Retention(RetentionPolicy.RUNTIME原创 2021-09-07 00:30:35 · 688 阅读 · 0 评论 -
博客项目搭建(码神之路)
创建一个项目,如果是平时开发的,首先都要导入如下依赖<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.5.0</version> <relativePath/>原创 2021-09-04 00:53:06 · 7135 阅读 · 6 评论