06 2025 档案

摘要:效果预览 1,安装插件 Custom CSS and JS Loader 2,设置 Ctrl/Cmd + Shift + P 找到User Settings(JSON) 键入以下内容 "vscode_custom_css.imports": [ "https://gist.githubusercon 阅读全文
posted @ 2025-06-21 14:42 Rix里克斯 阅读(223) 评论(0) 推荐(0)
摘要:设置主题 我们在官方主题中选择一个自己喜欢的主题 来到GitHub,将它git clone到当前项目的themes文件夹中 设置_config.yml 找到 # Extensions ## Plugins: https://hexo.io/plugins/ ## Themes: https://he 阅读全文
posted @ 2025-06-13 14:20 Rix里克斯 阅读(235) 评论(0) 推荐(0)
摘要:前提条件 安装了Git 安装了Node.js > 12 安装Hexo #安装 npm install hexo #初始化 npx hexo init my-blog cd my-blog ls -a 项目文件夹初始化成功 使用VSCode打开 npm install #运行,默认在4000端口 np 阅读全文
posted @ 2025-06-10 23:12 Rix里克斯 阅读(216) 评论(0) 推荐(0)
摘要:前提条件 安装了Git安装了Node.js > 12 安装Hexo #安装 npm install hexo #初始化 npx hexo init my-blog cd my-blog ls -a 项目文件夹初始化成功 使用VSCode打开 npm install #运行,默认在4000端口 npx 阅读全文
posted @ 2025-06-10 23:11 Rix里克斯 阅读(2) 评论(0) 推荐(0)
摘要:在Spring中,依赖注入主要有三种方式:构造器注入(Constructor Injection)、Setter注入(Setter Injection) 和 字段注入(Field Injection)。Spring官方推荐优先使用构造器注入,理由如下: 一、三种注入方式对比 特性 构造器注入 Set 阅读全文
posted @ 2025-06-04 10:11 Rix里克斯 阅读(572) 评论(0) 推荐(0)