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