Exception
建行一世
闲出病来
展开
-
使用mybatisplus的分页插件调用.selectPage方法无效,没有按size条数查询也没有返回total的问题。
使用mybatisplus的分页插件调用.selectPage方法无效,没有按size条数查询也没有返回total的问题。需要添加如下配置@EnableTransactionManagement@Configuration@MapperScan("com.jxys.scaffold.*.mapper")public class MybatisPlusConfig { @Bean public PaginationInterceptor paginationInterceptor原创 2020-12-30 09:32:24 · 4187 阅读 · 2 评论 -
使用@Autowired报错Could not autowire. There is more than one bean of 'ProductClient' type.
使用@Autowired Could not autowire. There is more than one bean of ‘ProductClient’ type报错解决解决方法:1.将@Autowired注解替换成@Resource(name="")注解即可,name:中填写你想注入的bean对象名称@Resourceprivate ProductClient productCli...原创 2019-12-02 10:32:19 · 25573 阅读 · 4 评论