上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 76 下一页
摘要: 对于同一个方法,上面加了n个注解,如下所示。 @AnnotationOne @AnnotationTwo public void test() { ……………………………… } 如果,不加order来强制表示顺序的话,这2个注解执行的默认顺序是什么样子的呢? 经查阅Spring官方文档https:/ 阅读全文
posted @ 2022-01-17 13:59 八英里 阅读(721) 评论(0) 推荐(0) 编辑
摘要: 众所周知,spring声明式事务是基于AOP实现的,那么,如果我们在同一个方法自定义多个AOP,我们如何指定他们的执行顺序呢?网上很多答案都是指定order,order越小越是最先执行,这种也不能算是错,但有些片面。 配置AOP执行顺序的三种方式: 通过实现org.springframework.c 阅读全文
posted @ 2022-01-17 13:51 八英里 阅读(441) 评论(0) 推荐(0) 编辑
摘要: UpdateWrapper<LogisticsOrderCharge> chargeUpdateWrapper = new UpdateWrapper<>();chargeUpdateWrapper.set("update_time",new Date());if(costType == Logis 阅读全文
posted @ 2021-12-30 11:17 八英里 阅读(361) 评论(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 八英里 阅读(1162) 评论(0) 推荐(0) 编辑
摘要: private final TransactionTemplate transactionTemplate; 阅读全文
posted @ 2021-12-22 19:17 八英里 阅读(34) 评论(0) 推荐(0) 编辑
摘要: @TableField(exist = false) 阅读全文
posted @ 2021-12-17 17:44 八英里 阅读(57) 评论(0) 推荐(0) 编辑
摘要: @ApiModelProperty("资源状态名称") private String statusName; @Override public void setStatus(Integer status) { super.setStatus(status); this.statusName = En 阅读全文
posted @ 2021-12-17 15:55 八英里 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 接受两个参数的函数是BiFunction: BiFunction<Integer, Integer, Integer> f3 = (x, y) -> x + y; 不接受参数的函数是Supplier: Supplier<Double> f4 = () -> Math.random(); 或相当于: 阅读全文
posted @ 2021-12-12 21:33 八英里 阅读(4393) 评论(0) 推荐(0) 编辑
摘要: package com.exe.competency.service.impl; import com.exe.competency.domain.RuleParam; import com.exe.competency.domain.RuleResult; import org.springfra 阅读全文
posted @ 2021-12-12 10:25 八英里 阅读(828) 评论(0) 推荐(0) 编辑
摘要: <sql id = "Condition_List"> <!-- 根据资源商类型查询 --> <if test="query.partnerType != null" > and a.type = #{query.partnerType} </if> <!-- 根据所在地查询 --> <if tes 阅读全文
posted @ 2021-12-09 20:35 八英里 阅读(194) 评论(0) 推荐(0) 编辑
上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 76 下一页