摘要:
微信机器人 wechaty 前端部署 系统 centos7 node版本 v16.15.1 安装依赖时Better-SQLite3无法安装 原因:GCC版本(有时)与Centos7中的Better-SQLite3不兼容 解决: 需要root权限(以下命令在root账号下进行) sudo yum in 阅读全文
摘要:
// 以下代码去除其他信息 仅供参考List<Obj> a= demo.getOutboundReportDetail(null); Map<String, List<Obj>> map = a.stream().collect(Collectors.groupingBy(Obj::getSuppl 阅读全文
摘要:
public static String getAccessToken(String appKey,String appSecret) { DingTalkClient client = new DefaultDingTalkClient("https://oapi.dingtalk.com/get 阅读全文
摘要:
public static File byte2File(byte[] buf, String filePath, String fileName){ BufferedOutputStream bos = null; FileOutputStream fos = null; File file = 阅读全文
摘要:
前端代码 <template> <div class="root"> <el-table :data="dataList" style="width: 100%" :fit='true' :default-sort="{prop: 'date', order: 'descending'}" > <e 阅读全文
摘要:
树形菜单用到的类@Datapublic class MenuTree { private Integer id; private String name; private Integer parentId; private List<MenuTree> children;} public List< 阅读全文
摘要:
简单的全局跨域配置 public void addCorsMappings(CorsRegistry registry) { registry.addMapping("/**") .allowedOrigins("*") .allowedMethods("POST", "GET", "PUT", " 阅读全文
摘要:
用法 list.stream().collect(Collectors.groupingBy(entity -> entity.getParam())) eg : {type = "类型一",name = 1} {type = "类型一",name = 2} {type = "类型二",name = 阅读全文
摘要:
结果 : 同时有多个配置类都实现了WebMvcConfigurer或继承了WebMvcConfigurationSupport,导致只会有一个生效 例如: SwaggerConfig extends WebMvcConfigurationSupport LogInterceptor extends 阅读全文
摘要:
list.stream().collect(Collectors.toMap(Class::getParam, Function.identity(), (a, b) -> { a.setParam(a.getParam() + b.getParam()); .... return a; }));例 阅读全文