摘要:
MyBatis Plus 添加多租户功能后 对某个Mapper方法 忽略多租户处理: 使用注解 @InterceptorIgnore(tenantLine = "true") 阅读全文
摘要:
1、所有属性为private 2、提供默认构造方法 3、提供getter和setter 4、实现serializable接口 凡事被spring 创建的对象才能成为spring 的bean 阅读全文
摘要:
public static void main(String[] args) { // 循环遍历Map的4中方法 Map<Integer, Integer> map = new HashMap<Integer, Integer>(); map.put(1, 2); // 1. entrySet遍历, 阅读全文
摘要:
方法一: Controller中注入service的时候使用@Autowired自动注入,@Qualifier("beanId")来指定注入哪一个。 方法二: Controller中注入service的时候使用@Resource(type = 类名.class)来指定注入哪一个。 方法三: 每个se 阅读全文
摘要:
对于同一个方法,上面加了n个注解,如下所示。 @AnnotationOne @AnnotationTwo public void test() { ……………………………… } 如果,不加order来强制表示顺序的话,这2个注解执行的默认顺序是什么样子的呢? 经查阅Spring官方文档https:/ 阅读全文
摘要:
众所周知,spring声明式事务是基于AOP实现的,那么,如果我们在同一个方法自定义多个AOP,我们如何指定他们的执行顺序呢?网上很多答案都是指定order,order越小越是最先执行,这种也不能算是错,但有些片面。 配置AOP执行顺序的三种方式: 通过实现org.springframework.c 阅读全文
摘要:
UpdateWrapper<LogisticsOrderCharge> chargeUpdateWrapper = new UpdateWrapper<>();chargeUpdateWrapper.set("update_time",new Date());if(costType == Logis 阅读全文
摘要:
enum switch case label must be the unqualified name of an enumeration constant 或 错误: 枚举 switchcase 标签必须为枚举常量的非限定名称case ColorType.GREEN: 在咱们Android开发中, 阅读全文
摘要:
private final TransactionTemplate transactionTemplate; 阅读全文
摘要:
@TableField(exist = false) 阅读全文