expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {} 注入失败,解决方案
摘要:
把@Autowired 改成以下: @Autowired(required = false) @Autowired(required=false):表示忽略当前要注入的bean,如果有直接注入,没有跳过,不会报错。 在容器的启动过程中,会初始化很多bean,这也是spring的核心之一(IOC)。但 阅读全文
摘要:
MyBatis Plus 通过实体获取表名 TableName,还是挺方便的,使用SqlHelper工具类即可, 代码如下: SqlHelper.table(SysUser.class).getTableName() 阅读全文