摘要: Java设计模式 1 前言 1.1 目的 2 七大原则 2.1 单一职责原则 方案一 package com.feng.principle.singleresponsibility; /** * @Author feng peng * @Date 2023/4/12 * @Time 22:53 */ 阅读全文
posted @ 2024-11-04 22:46 千夜ん 阅读(0) 评论(0) 推荐(0) 编辑
摘要: Spring原理 SpringBoot 1 Boot 1.1 Boot 骨架项目 如果是 linux 环境,用以下命令即可获取 spring boot 的骨架 pom.xml curl -G https://start.spring.io/pom.xml -d dependencies=web,my 阅读全文
posted @ 2024-11-04 22:43 千夜ん 阅读(0) 评论(0) 推荐(0) 编辑
摘要: Spring原理 MVC 1 WEB 1.1 RequestMappingHandlerMapping 与 RequestMappingHandlerAdapter RequestMappingHandlerMapping 与 RequestMappingHandlerAdapter 俩是一对,分别 阅读全文
posted @ 2024-10-20 09:34 千夜ん 阅读(3) 评论(0) 推荐(0) 编辑
摘要: SpringBoot + Vue3 +MySql5.7 +JDK8 一、 SpringBoot项目搭建 1 SpringBoot概述 1.1 SpringBoot 概念 SpringBoot提供了一种快速使用Spring的方式,基于约定优于配置的思想,可以让开发人员不必在配置与逻 辑业务之间进行思维 阅读全文
posted @ 2024-09-22 11:07 千夜ん 阅读(11) 评论(0) 推荐(0) 编辑
摘要: Docker 前后端部署流程 1 Docker基本知识 2 后端部署 使用tomcat容器部署后端 # 创建数据卷,映射出tomcat容器的webapps目录和logs目录 mkdir -p /usr/local/dockertest/tomcat/webapps /usr/local/docker 阅读全文
posted @ 2024-09-22 11:06 千夜ん 阅读(7) 评论(0) 推荐(0) 编辑
摘要: Spring 高级 1 容器与Bean 1.1 接口容器 1.1.1 BeanFactory是什么 @SpringBootApplication public class ShowApplication { public static void main(String[] args) { Confi 阅读全文
posted @ 2024-09-22 11:05 千夜ん 阅读(2) 评论(0) 推荐(0) 编辑
摘要: TypeScript 1 安装 单独文件需要安装,项目不需要(例如vite) npm install -g typescript tsc -v //查看当前版本号 2 基本类型 2.1 字符串类型 2.2 数字类型 如果变量没有写类型,默认是第一个赋值的类型 2.3 布尔类型 npm i @type 阅读全文
posted @ 2024-03-14 21:27 千夜ん 阅读(8) 评论(0) 推荐(0) 编辑
摘要: Minio 1 基于centos7,docker部署 # 直接使用centos7部署,但是只能通过私有ip访问本机,指定公网ip不行 cd /usr/local/ # 获取minio wget -q http://dl.minio.org.cn/server/minio/release/linux- 阅读全文
posted @ 2024-02-20 21:55 千夜ん 阅读(86) 评论(0) 推荐(0) 编辑
摘要: JUC基础 1 概览 pom.xml <properties> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> </properties> <d 阅读全文
posted @ 2024-02-19 09:20 千夜ん 阅读(4) 评论(0) 推荐(0) 编辑
摘要: Vue3 1 新建项目 1.1 vue-cli创建 vue -V 查看vue版本,必须高于4.5.0 启动测试 cd vue3_test npm run serve 运行成功 1.2 vite创建 命令 1.3 分析工程结构 main.js //引入的不再是Vue构造函数了,引入的是一个名为crea 阅读全文
posted @ 2024-01-20 11:12 千夜ん 阅读(17) 评论(0) 推荐(0) 编辑