上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 36 下一页
摘要: 1.PageHelper技术 依赖 <!-- PageHelper --> <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper</artifactId> <version>5.1.2</versio 阅读全文
posted @ 2023-08-17 10:45 骚哥 阅读(73) 评论(0) 推荐(0) 编辑
摘要: // 设置需要拷贝的字段 Set<String> targetSet = new HashSet<>(); targetSet.addAll(Arrays .asList("totalRefund", "actualAdvertisingCost", "expensesOfTaxation")); 阅读全文
posted @ 2023-08-05 12:00 骚哥 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 本地Excel导入系统测试方案 Excel 代码 @Test public void importperson() throws FileNotFoundException { FileInputStream fis = new FileInputStream(new File("C:\\Users 阅读全文
posted @ 2023-08-04 17:27 骚哥 阅读(41) 评论(0) 推荐(0) 编辑
摘要: Map延伸工具类 /** * 集合类型转换 * */ public class CollectionUtil { /** * 根据value值得到map的key值 * @author wzw * * @param map * @param value * @return java.lang.Obje 阅读全文
posted @ 2023-08-03 14:07 骚哥 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 1)表1和表2的产品名称[数据库字段]字符编译方式不一致 ①问题 org.springframework.jdbc.UncategorizedSQLException: Error updating database. Cause: java.sql.SQLException: Incorrect 阅读全文
posted @ 2023-07-04 20:44 骚哥 阅读(233) 评论(0) 推荐(0) 编辑
摘要: 在MySQL中查询字符串长度使用length关键字,具体用法如下: 先了解一下,Mysql中length()、char_length()的区别。length():mysql里面的length()函数是一个用来获取字符串长度的内置函数。char_length():在mysql内置函数里面查看字符串长度 阅读全文
posted @ 2023-07-03 22:56 骚哥 阅读(991) 评论(0) 推荐(0) 编辑
摘要: 一、根据对象字段进行排序【代码】 @Test public void wzwStream() { List<User> list = new ArrayList<>(); for (int i = 1; i <= 3; i++) { User user = new User(); user.setU 阅读全文
posted @ 2023-06-30 16:38 骚哥 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 保留两位小数 方案一 Double totalSaleAmount = 4.174558045899999E7; DecimalFormat df = new DecimalFormat("#.##"); System.out.println("df.format(totalSaleAmount) 阅读全文
posted @ 2023-06-21 09:15 骚哥 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 调整IDEA字体大小 1.正常版 2. 远程版 阅读全文
posted @ 2023-06-19 13:43 骚哥 阅读(78) 评论(0) 推荐(0) 编辑
摘要: 一、虚拟表增加索引 创建虚拟表,并且增加SKU索引:INDEX idx_sku (sku) CREATE TEMPORARY TABLE t_sku_analy_temp ( sku VARCHAR(225) PRIMARY KEY, sell_price DECIMAL(10, 2), profi 阅读全文
posted @ 2023-06-08 17:24 骚哥 阅读(102) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 36 下一页