00. Lua
Lua: download
https://www.lua.org/download.html
1 | print("Hello World!") |
参考
Lua 教程 | 菜鸟教程
https://www.runoob.com/lua/lua-tutorial.html
01. Rust
如果您是 Windows 的 Linux 子系统(WSL)用户,要安装 Rust,请在终端中运行以下命令,然后遵循屏幕上的指示。
1 | curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh |
如果报错 linker cc
not found 则安装 sudo apt install gcc
1 | cargo new greeting |
07. 通用枚举
通用枚举
1 | @FunctionalInterface |
枚举类实现此接口,并定义映射方式
1 | package com.yandi.web.core.config; |
转换器统一对 BaseEnum 进行转换,对于每个枚举类型,可通过返回的 keys 来自定义转换的方式。
1 | package com.yandi.web.core.config; |
构造转换器工厂
1 | package com.yandi.web.core.config; |
将此 Converter 通过工厂模式提供到 springboot 中:
1 | @Configuration |
开始使用。
注意这里的 DocxEnum 用法。
1 | @PostMapping("/arrangement") |
08. SpringBoot 问题
Failed to configure a DataSource: ‘url’ attribute is not specified and no embedded
在初次完成项目的构建后,启动项目时出错,提示信息“ Failed to configure a DataSource: ‘url’ attribute is not specified and no embedded datasource could be configured. ” ,这个异常很好理解,直接翻译成中文,一看便知了 “ 配置数据源失败:没有指定’url’属性,也不能配置嵌入式数据源。
导致这个问题的原因是因为,在 pom.xml 配置文件中,配置了数据连接技术 spring-boot-starter-jdbc 包 ,在启动配置文件时 ,Spring Boot 的自动装配机制就会去配置文件中找,相关的数据库的连接配置信息,如果找不到则抛出异常信息(具体源码就不在这儿分析了,有兴趣的可以自行去查看)。加入的 JDBC 依赖包。
方法一
如果先暂时使用不到数据库连接,只是测试搭建的项目是否能正常启动,可以先将该配置项注释掉即可,选中该项配置按快捷键 “ Ctrl + Shift + / ” 即可。
方法二
在 SpringBoot 应用程序启动时,排除 jdbc 的自动装配机制即可,在程序入口文件中新增配置注解 “ exclude=DataSourceAutoConfiguration.class ”
方法三
在开发库或者本地库中,如果有可用的临时数据库,可以先配置该库为暂时的数据库即可,在 application.properties 配置文件中,加入如下图配置内容。
@Value 取值为空的原因
使用 static 或者 final 修饰
类没有加上 @Component(或者 @service 等)
类被 new 新建了实例,而没有使用 @Autowired