摘要:
# 高版本JDK无法使用 @Resource 注解解决方案 ## 1. 普通项目 下载 [javax.annotation-api-1.3.2.jar](https://repo1.maven.org/maven2/javax/annotation/javax.annotation-api/1.3. 阅读全文
摘要:
# 高版本 JDK Hibernate Validator 扩展注解 https://stackoverflow.com/questions/35986200/error-creating-bean-with-name-org-springframework-validation-beanvalid 阅读全文
摘要:
添加快捷代码 语法: <base href="<%=request.getContextPath() + "/"%>"> <script type="text/javascript" src="script/jquery-3.6.0.min.js"></script> <script type="t 阅读全文
摘要:
# IDEA谷歌翻译使用 使用 Magic后,要设置代理 ![](https://img2023.cnblogs.com/blog/2171496/202305/2171496-20230528190204968-883026997.png) 阅读全文
摘要:
文本处理 https://yuanliao.info/d/4174 阅读全文
摘要:
数据结构绘图 1. 树 1.1 层次遍历 https://binary-tree-visualizer.vercel.app/ 输入格式 [5, 4, 6, null, null, 3, 7] [4, 3, 6, null, null, 5, 7,null, null, null, 8] 1.2 H 阅读全文
摘要:
Mermaid 学习 1. 指导文档 https://mermaid.js.org/intro/n00b-syntaxReference.html 2. 画图模板 2.1 流程图 flowchart LR A[Hard] -->|Text| B(Round) B --> C{Decision} C 阅读全文
摘要:
1. Java 的浮点运算是基于 IEEE-754 标准来的。 IEEE-754 standard Java's Floating-Point Operations 2. Java 语言规范 https://docs.oracle.com/javase/specs/jls/se7/html/jls- 阅读全文
摘要:
Java是不能直接在类中对变量进行赋值的 错误案例 只能在定义的时候赋值 或者在方法中赋值,或者在代码块中赋值 public class uuq { public static void main(String[] args) { c c = new c(); c.update(3); System 阅读全文
摘要:
内部类【可以直接访问私有属性,并且可以体现类与类之间的包含关系】 | | 内部 > 外部类 | 外部类 > 内部 | 外部其它类 > 内部 | | | | | | | 局部内部类 | 直接访问如果名称相同,使用 外部类.this.成员 访问外部类的成员 | 创建对象,再访问(注意:必须在作用域内) 阅读全文