会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
ZuiTaiPing
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
下一页
2024年3月5日
C# 2010中的数据类型
摘要: 
阅读全文
posted @ 2024-03-05 15:59 ZuiTaiPing
阅读(18)
评论(0)
推荐(0)
2024年1月12日
Visual Studio 2022密钥
摘要: 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)
2023年10月30日
Apache Commons Configuration/Apache Commons Configuration2 编辑ini文件
摘要: 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)
2023年5月11日
easyExcel本地可以,发布到线上环境异常问题
摘要: 服务器升级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)
2023年4月26日
IntelliJ Idea设置text file encoding UTF-8;换行符为 Unix 格式
摘要: 设置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 Boot配置Hikari连接池
摘要: 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)
VO,BO,PO,DO,DTO的区别
摘要: 在Java开发中,VO、BO、PO、DO和DTO都是常见的对象命名规范,这些规范用于定义不同用途的类和对象。 VO(Value Object): 值对象,通常用于表示界面或外部系统交互时的数据模型,主要用于展示视图数据,VO中的属性一般为只读。 BO(Business Object):业务对象,用于
阅读全文
posted @ 2023-04-26 14:01 ZuiTaiPing
阅读(353)
评论(0)
推荐(0)
2023年4月12日
以阿里巴巴推荐的使用 ThreadPoolExecutor 构造函数自定义参数的方式来创建线程池
摘要: 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)
2023年2月16日
Java中字符串占位符
摘要: 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)
2023年2月8日
spring的@Param注解和mybatis中的@Param注解的区别
摘要: 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)
上一页
1
2
3
4
下一页
公告