上一页 1 ··· 7 8 9 10 11 12 下一页
摘要: 1、在项目resources目录下添加application.yml配置信息 2、导入相关依赖(添加springboot启动依赖即可) 3、日志相关配置信息 logging: pattern: #日志输出格式 console: "%d{yyyy-MM-dd HH:mm:ss.SSS} %5p %-4 阅读全文
posted @ 2020-12-16 13:58 懂得归零 阅读(774) 评论(0) 推荐(0) 编辑
摘要: String[] str = {"12312312", "24123124", "fsdgsws"};String s = Arrays.toString(str);(1)String[] split = s.replace("[", "").replace("]", "").split(","); 阅读全文
posted @ 2020-12-14 11:27 懂得归零 阅读(2631) 评论(0) 推荐(0) 编辑
摘要: package com.tt.rhms.sys.controller;import org.apache.poi.hssf.usermodel.HSSFRow;import org.apache.poi.hssf.usermodel.HSSFSheet;import org.apache.poi.h 阅读全文
posted @ 2020-12-08 15:59 懂得归零 阅读(491) 评论(0) 推荐(0) 编辑
摘要: package com.tt.rhms.sys.controller;import org.springframework.web.bind.annotation.GetMapping;import org.springframework.web.bind.annotation.RestContro 阅读全文
posted @ 2020-12-08 13:50 懂得归零 阅读(433) 评论(0) 推荐(0) 编辑
摘要: 1、cookie有大小限制,大小一般是4k,超过这个限制,cookie中无法存储该数据 解决办法: 1、key用短字符 2、如果value对应的是集合对象,我们可以增加cookie的数量解决大小限制问题(自己遇到的问题:后台查询结果集为7个用户所属系统应用对象,存储到cookie中时,只能存储5个) 阅读全文
posted @ 2020-11-17 13:47 懂得归零 阅读(4363) 评论(0) 推荐(1) 编辑
摘要: int[] scores = {1, 23, 3, 40, 20};Arrays.sort(scores);//对数组进行排序int i = Arrays.binarySearch(scores, 4);if (i >= 0) System.out.println("数据在数组中存在");else 阅读全文
posted @ 2020-11-13 14:26 懂得归零 阅读(162) 评论(0) 推荐(0) 编辑
摘要: /** * 编码 + 时间 + 自增数值 如果是当天编码,则自增,如果是新的一天,数值重新从00001开始自增 * @param prefix 前缀 * @param code 编码 */public static String test(String prefix, String code) { 阅读全文
posted @ 2020-11-10 08:38 懂得归零 阅读(270) 评论(0) 推荐(0) 编辑
摘要: 对基本数据类型的过滤 List<Integer> list=new ArrayList<>(); list.add(2);list.add(4);list.add(20);list.add(2130);list.add(38);//过滤包含2的数据list=list.stream().filter( 阅读全文
posted @ 2020-11-06 16:05 懂得归零 阅读(12867) 评论(0) 推荐(0) 编辑
摘要: //将List集合转换为数组List<String> list= new ArrayList<String>();list.add("李怡欣");list.add("许文静");list.add("小磊子");String [] result = list.toArray(new String[li 阅读全文
posted @ 2020-11-06 15:13 懂得归零 阅读(213) 评论(0) 推荐(0) 编辑
摘要: package com.tt.rhcms.modular.api.test;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.PostMapping;impo 阅读全文
posted @ 2020-11-06 14:59 懂得归零 阅读(137) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 下一页