摘要: //这是按照list里面的某个属性排序 Collections Comparator comparator = Collator.getInstance(java.util.Locale.CHINA); BaseWebsiteVO a1 = BaseWebsiteVO.builder().name( 阅读全文
posted @ 2022-05-30 09:30 xxfcode 阅读(715) 评论(0) 推荐(0) 编辑
摘要: @TableField(exist = false) private String mountName; 这样查询的sql,就没有mount_name这个属性了 因为数据库没有mount_name这个字段,但是我们实体类又用得着。 阅读全文
posted @ 2022-05-20 17:16 xxfcode 阅读(661) 评论(0) 推荐(0) 编辑
摘要: @JsonProperty(value = "b_net_id") private String bNetId; bNetId是不会按驼峰命名转化成b_net_id,所以加这个注解 阅读全文
posted @ 2022-05-20 17:10 xxfcode 阅读(73) 评论(0) 推荐(0) 编辑
摘要: 1. 根据某个字段,求两个集合的交集 //求detailInstances和instanceOneApp交集,根据InstanceId相同 List<OrderDetailInstance> instances = detailInstances.stream() .filter(o -> inst 阅读全文
posted @ 2022-05-18 14:56 xxfcode 阅读(67) 评论(0) 推荐(0) 编辑
摘要: OkHttpClient client = new OkHttpClient(); String credential = Credentials.basic("用户名", "密码"); MediaType mediaType = MediaType.parse("application/x-www 阅读全文
posted @ 2022-05-12 17:44 xxfcode 阅读(335) 评论(0) 推荐(0) 编辑
摘要: 第一步: 第二步: 第三步:请求token的路径中加上下图这段 var jsonData = JSON.parse(responseBody);var bearer = jsonData.access_token;if(bearer != null){ postman.setEnvironmentV 阅读全文
posted @ 2022-04-21 09:54 xxfcode 阅读(521) 评论(0) 推荐(0) 编辑
摘要: 错误详情: No more handles because no underlying browser available.(更多的不展示了) 网上找的解决方案: 修改spoon.sh,将将export SWT_GTK3=0配置改为export SWT_GTK3=1即可解决这个问题。 阅读全文
posted @ 2022-04-08 14:50 xxfcode 阅读(488) 评论(0) 推荐(0) 编辑
摘要: 报错信息如下 "No thread-bound request found: Are you referring to request attributes outside of an actual web request,or processing a request outside of the 阅读全文
posted @ 2022-03-29 16:32 xxfcode 阅读(1710) 评论(0) 推荐(0) 编辑
摘要: spring: datasource: dynamic: primary: test1 //表示这个是主库,可以不用加@DS注解,但是test2就需要加注解了 strict: false datasource: test1: url: username: password: driver-class 阅读全文
posted @ 2022-03-29 16:12 xxfcode 阅读(143) 评论(0) 推荐(0) 编辑