摘要:
这个需求应该也比较常见,在不同的条件下创建不同的bean,具体场景很多,能看到这篇的肯定懂我的意思。 倘若不了解spring4.X新加入的@Conditional注解的话,要实现不同条件创建不同的bean还是比较麻烦的,可能需要硬编码一些东西做if判断。那么现在有个@Conditional注解后,事 阅读全文
摘要:
下面来介绍如何使用@Condition [html] view plain copy public class TestCondition implements Condition { /** * 只有返回true,才会启用配置 */ public boolean matches(Condition 阅读全文
摘要:
springboot mybatis 批量insert 操作 直接上代码: 1.首先要在pom.xml中导入包: springboot 1.5.8 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring- 阅读全文