摘要: JavaScript之DOM:https://blog.csdn.net/qq_43751200/article/details/125135540 solr介绍:https://blog.csdn.net/weixin_43114209/article/details/131893893 solr 阅读全文
posted @ 2023-09-14 11:06 hasome 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 循环 for循环 -- for for 变量=初始值,结束值,步长 do -- 主体 end -- 循环输出10次 for i=1,10 do print(i) end -- 倒叙排序 for i=10,1,-1 do print(i) end while循环 -- while local num 阅读全文
posted @ 2023-09-14 11:04 hasome 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 参考:https://blog.csdn.net/qq_43594278/article/details/116018869 函数定义 lua 编程语言函数定义格式如下: optional_function_scope function function_name( argument1, argum 阅读全文
posted @ 2023-09-13 15:25 hasome 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 参考:https://blog.csdn.net/qq_43594278/article/details/116018869,https://blog.csdn.net/weixin_54721305/article/details/125648123 lua 是动态类型语言,变量不需要类型定义,可 阅读全文
posted @ 2023-09-13 09:48 hasome 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 参考:https://blog.csdn.net/weixin_54721305/article/details/125648123 概述 Lua 是一种轻量小巧的脚本语言,用标准C语言编写并以源代码形式开放, 其设计目的是为了嵌入应用程序中,从而为应用程序提供灵活的扩展和定制功能。 Lua 是巴西 阅读全文
posted @ 2023-09-13 09:47 hasome 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 参考:https://blog.csdn.net/weixin_44230693/article/details/113847162 consuemr void accept(T t):对给定的参数执行此操作。 default Consumer andThen(Consumer after):返回一 阅读全文
posted @ 2023-09-13 09:47 hasome 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 参考:https://blog.csdn.net/m0_61366135/article/details/130557475 函数式接口概述 有且仅有一个抽象方法的接口 Java中的函数式编程体现就是Lambda表达式 所以函数式接口即可以适用于Lambda使用的接口 supplier Java 中 阅读全文
posted @ 2023-09-13 09:47 hasome 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 配置文件 使用xml配置日志保存(并不需要pom配置slf4j依赖,starter里面已经配置了依赖了) 在项目的resources目录下创建一个【logback-spring.xml】日志配置文件 名称只要是一 logback开头就行,测试使用log.xml并不会生成日志。合法名称:logback 阅读全文
posted @ 2023-09-13 09:46 hasome 阅读(64) 评论(0) 推荐(0) 编辑
摘要: 【强制】应用中不可直接使用日志系统(Log4j、Logback)中的 API,而应依赖使用日志框架 (SLF4J、JCL–Jakarta Commons Logging)中的 API,使用门面模式的日志框架,有利于维护和 各个类的日志处理方式统一。 说明:日志框架(SLF4J、JCL–Jakarta 阅读全文
posted @ 2023-09-13 09:46 hasome 阅读(79) 评论(0) 推荐(0) 编辑
摘要: 参考:https://blog.csdn.net/weixin_44489823/article/details/100174865,https://blog.csdn.net/m0_62618110/article/details/123704869 基础语法 " ^ "指出一个字符串的开始 " 阅读全文
posted @ 2023-09-13 09:46 hasome 阅读(9) 评论(0) 推荐(0) 编辑