2024年6月2日

spring创建 JavaWeb

摘要: 阅读全文

posted @ 2024-06-02 22:50 王半仙儿的博客 阅读(2) 评论(0) 推荐(0) 编辑

2023年12月29日

CSS 学习

摘要: 类选择器 class 标签中加入 <p class = "speak"> <style> .speak :{ color: red } <style> 阅读全文

posted @ 2023-12-29 21:23 王半仙儿的博客 阅读(3) 评论(0) 推荐(0) 编辑

2023年11月6日

Git-HEAD 的含义

摘要: 在 Git 中,"HEAD" 是一个特殊的引用,它指向当前所处的分支或提交。 当你进行一些操作时,比如提交代码、切换分支等,HEAD 的指向会随之改变。下面是 HEAD 在不同情况下的含义: 1. 如果你当前在某个分支上(例如 master 分支),那么 HEAD 将指向该分支的最新提交。这意味着你 阅读全文

posted @ 2023-11-06 22:43 王半仙儿的博客 阅读(889) 评论(0) 推荐(0) 编辑

2023年9月8日

关于SpringBoot 启动失败 Invocation of init method failed; nested exception is java.lang.IllegalStateException: Ambiguous mapping. 的问题解析

摘要: Application run failed org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'requestMappingHandlerMapping' defined i 阅读全文

posted @ 2023-09-08 14:17 王半仙儿的博客 阅读(353) 评论(0) 推荐(0) 编辑

2023年9月5日

blender-十大基本操作

摘要: 阅读全文

posted @ 2023-09-05 16:57 王半仙儿的博客 阅读(5) 评论(0) 推荐(0) 编辑

blender-主要操作技巧

摘要: E 或 G 或 S 之后 不在同一平面的 处理1切换正视图 alt + z 切换透视模式 s + z +0 变成同一平面 阅读全文

posted @ 2023-09-05 16:23 王半仙儿的博客 阅读(11) 评论(0) 推荐(0) 编辑

blender-点线面操作

摘要: 阅读全文

posted @ 2023-09-05 16:02 王半仙儿的博客 阅读(17) 评论(0) 推荐(0) 编辑

2023年9月4日

blender-1-基本快捷键

摘要: https://www.bilibili.com/video/BV14u41147YH?p=3&vd_source=e3899eab0ab1c2da60e189bdce9ed666 跟他学的 shift + a 新建基本模型 R 旋转模型 G 移动模型 xyz 不同轴移动 S 缩放 ALT shif 阅读全文

posted @ 2023-09-04 11:30 王半仙儿的博客 阅读(4) 评论(0) 推荐(0) 编辑

2023年8月18日

mybatis 中 实体类字段为 month SQL 会报错的问题

摘要: 因为 month 是 mysql 的关键字 ,所以 你的实体类字段改成 months months months months months months就行了 阅读全文

posted @ 2023-08-18 12:06 王半仙儿的博客 阅读(28) 评论(0) 推荐(0) 编辑

list 中的Stream 累加操作

摘要: ublic class Test { public static void main(String[] args) { double sum = 860.10 + 1808.09; double sum1 = 1808.09 + 860.10; // output is 2668.19 System 阅读全文

posted @ 2023-08-18 10:25 王半仙儿的博客 阅读(50) 评论(0) 推荐(0) 编辑

导航