摘要:
1,获取当前用户下的所有表信息 => SELECT * FROM user_tables 1.1,查询某一张表的字段信息:SELECT * FROM user_tab_columns where Table_Name = '表名' 1.2,查询某一张表的注释:SELECT * FROM user_t 阅读全文
摘要:
01,Could not autowire. No beans of 'UserMapper' type found 01.1,问题描述,通过反射动态实现的接口在调用时会出现以上提示,常见的如 ORM 框架的 Dao 层 01.2,该错误不是代码问题,可以手动关闭该错误,如下,去掉方括号里面的勾选 阅读全文