摘要: ![image](https://img2024.cnblogs.com/blog/2068052/202403/2068052-20240305155836956-1930544192.png) 阅读全文
posted @ 2024-03-05 15:59 ZuiTaiPing 阅读(18) 评论(0) 推荐(0)
摘要: Professional: TD244-P4NB7-YQ6XK-Y8MMM-YWV2J Enterprise: VHF9H-NXBBB-638P6-6JHCY-88JWH Visual Studio 离线安装下载器地址: https://wwjc.lanzouq.com/ihwXR1kw0z4d 来 阅读全文
posted @ 2024-01-12 14:06 ZuiTaiPing 阅读(207) 评论(0) 推荐(0)
摘要: Apache Commons Configuration 依赖 <dependency> <groupId>commons-configuration</groupId> <artifactId>commons-configuration</artifactId> <version>1.10</ve 阅读全文
posted @ 2023-10-30 16:14 ZuiTaiPing 阅读(257) 评论(0) 推荐(0)
摘要: 服务器升级jdk版本到jdk11,导致easyExcel在本地可以,发布到线上环境异常,异常原因为缺少字体库,解决方案:安装字体:dejavu-sans-fonts 和 fontconfig。 在 Ubuntu 中 安装 dejavu-sans-fonts sudo apt-get install 阅读全文
posted @ 2023-05-11 15:21 ZuiTaiPing 阅读(1373) 评论(0) 推荐(0)
摘要: 设置text file encoding UTF-8 Transparent native-to-ascii conversion 这个功能会将我们输入的所有字符转换成Unicode序列码保存,避免properties的乱码问题。 Create UTF-8 files选择with NO BOM UT 阅读全文
posted @ 2023-04-26 22:42 ZuiTaiPing 阅读(256) 评论(0) 推荐(0)
摘要: spring: datasource: driver-class-name: com.mysql.cj.jdbc.Driver password: xxxx username: root url: jdbc:mysql://www.xxxxxx.cn:3306/thisDemo?allowMulti 阅读全文
posted @ 2023-04-26 15:45 ZuiTaiPing 阅读(5116) 评论(0) 推荐(0)
摘要: 在Java开发中,VO、BO、PO、DO和DTO都是常见的对象命名规范,这些规范用于定义不同用途的类和对象。 VO(Value Object): 值对象,通常用于表示界面或外部系统交互时的数据模型,主要用于展示视图数据,VO中的属性一般为只读。 BO(Business Object):业务对象,用于 阅读全文
posted @ 2023-04-26 14:01 ZuiTaiPing 阅读(353) 评论(0) 推荐(0)
摘要: import java.util.concurrent.ArrayBlockingQueue; import java.util.concurrent.ThreadPoolExecutor; import java.util.concurrent.TimeUnit; public class Thr 阅读全文
posted @ 2023-04-12 09:41 ZuiTaiPing 阅读(111) 评论(0) 推荐(0)
摘要: String.format()格式化 String url = "物料id:%s,仓库编号:%s,库存数量低于安全库存数量"; String name = "190"; String age = "1074957078016126976"; url = String.format(url,name, 阅读全文
posted @ 2023-02-16 16:19 ZuiTaiPing 阅读(376) 评论(0) 推荐(0)
摘要: 1、spring中@Param ( import org.springframework.data.repository.query.Param; ) int selectRoleCount(@Param("businessId") Integer businessId,@Param("member 阅读全文
posted @ 2023-02-08 14:39 ZuiTaiPing 阅读(126) 评论(0) 推荐(0)