会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
wyuioahxvm
博客园
首页
新随笔
联系
管理
订阅
2023年12月8日
springboot热部署配置
摘要: 第一步 pom文件 <!-- 引入热部署依赖 --><dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <scope>runtime</scope
阅读全文
posted @ 2023-12-08 17:14 wyuioahxvm
阅读(55)
评论(0)
推荐(0)
2022年6月27日
mybatis-plus 数据去重
摘要: wrapper.select("distinct user_code").eq("id", userDTO.getId());
阅读全文
posted @ 2022-06-27 17:56 wyuioahxvm
阅读(623)
评论(0)
推荐(0)
随机生成手机号码
摘要: //定一个静态方法,专门生成单个的号码 public static void getPhoneNum() { //给予真实的初始号段,号段是在百度上面查找的真实号段 String[] start = {"133", "149", "153", "173", "177", "180", "181",
阅读全文
posted @ 2022-06-27 17:52 wyuioahxvm
阅读(1)
评论(0)
推荐(0)
insert 批量插入
摘要: insert into persons (id_p, lastname , firstName, city ) values (200,'haha' , 'deng' , 'shenzhen'), (201,'haha2' , 'deng' , 'GD'), (202,'haha3' , 'deng
阅读全文
posted @ 2022-06-27 17:50 wyuioahxvm
阅读(87)
评论(0)
推荐(0)
2022年6月21日
IntelliJ IDEA 官方网站 http://www.jetbrains.com/idea/
摘要: IntelliJ IDEA 官方网站 http://www.jetbrains.com/idea/
阅读全文
posted @ 2022-06-21 11:14 wyuioahxvm
阅读(2547)
评论(0)
推荐(0)
object转对象
摘要: String jsonString = JSON.toJSONString(httpResponse.getData());UserGoldInfoResDto userGoldInfoResDto =JSON.parseObject(jsonString, UserGoldInfoResDto.c
阅读全文
posted @ 2022-06-21 11:10 wyuioahxvm
阅读(88)
评论(0)
推荐(0)
如何在Mac Finder中查找/Usr 路径
摘要: 一、问题 不知道你们是否和我一样,有时候需要查找 /Usr 路径下的文件夹,但是直接在 Finder 中找不到这个路径,咋办呢? 二、解决方法 其实这是因为 /Usr 路径被隐藏了,只需要一句命令即可解决: 在Finder 中点击快捷键 Cmd+Shift+G 在弹出的目录中填写/Usr/bin 就
阅读全文
posted @ 2022-06-21 11:07 wyuioahxvm
阅读(416)
评论(0)
推荐(0)
mac查看git安装目录
摘要:
阅读全文
posted @ 2022-06-21 11:04 wyuioahxvm
阅读(92)
评论(0)
推荐(0)
2022年6月15日
bigdecimal如何判断是否大于0、小于0和等于0
摘要: 可以使用compareTo(Bigdecimal bigdecimal),传入“BigDecimal.ZERO”返回0表示等于0,返回1表示大于0,返回-1表示小于0: System.out.println("0-0="+new BigDecimal("0").compareTo(BigDecima
阅读全文
posted @ 2022-06-15 11:18 wyuioahxvm
阅读(5559)
评论(0)
推荐(0)
将秒转换为时分秒展示
摘要: /** * 转换时间格式为xx小时xx分xx秒 * @param second xxxxx */public String changeTimeFormat(String second) { Integer seconds = Integer.valueOf(second); // 得到分钟数 In
阅读全文
posted @ 2022-06-15 10:45 wyuioahxvm
阅读(133)
评论(0)
推荐(0)
下一页
公告