会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
cloud_shi
博客园
首页
新随笔
联系
订阅
管理
2020年5月20日
window 查看端口/杀进程
摘要: netstat -aon | findstr "8082" taskkill /f /t /im 8108 -- 这里8108是对应的进程
阅读全文
posted @ 2020-05-20 18:30 cloud_shi
阅读(166)
评论(0)
推荐(0)
2020年4月18日
eureka 去除注册中心保护机制
摘要: erueka: server: # 测试时关闭自我保护机制,保证不可用服务及时踢出 enable-self-preservation: false
阅读全文
posted @ 2020-04-18 17:40 cloud_shi
阅读(479)
评论(0)
推荐(0)
2020年3月23日
mysql 表关联更新另一张表的数据
摘要: mysql: UPDATE member a,`chanelh5` b SET b.channel_id = a.channel_idWHERE a.pcode = b.pcode
阅读全文
posted @ 2020-03-23 00:57 cloud_shi
阅读(2303)
评论(0)
推荐(0)
2019年11月21日
mysql 修改,添加字段语句
摘要: //修改某个字段类型 ALTER TABLE member MODIFY COLUMN cpn_type TINYINT COMMENT '优惠券类型 1=现金券 2=满减券 3=加油券'; //在某个字段之后 新加字段 ALTER TABLE member ADD cpn_bn_handwork
阅读全文
posted @ 2019-11-21 11:06 cloud_shi
阅读(1012)
评论(0)
推荐(0)
2019年7月31日
@Async @Transaction
摘要: 使用注解,内部调用方法之间是不会生效的 通用的解决方案:(转)https://blog.csdn.net/z55887/article/details/81073450
阅读全文
posted @ 2019-07-31 15:00 cloud_shi
阅读(369)
评论(0)
推荐(0)
2019年7月17日
MYSQL 大于号,小于号
摘要: < 大于号 & & 和 ' ’ 单引号 " " 双引号
阅读全文
posted @ 2019-07-17 11:09 cloud_shi
阅读(9587)
评论(0)
推荐(0)
2019年7月16日
随机数生成
摘要: 生成4位随机数String four = String.valueOf((int) ((Math.random() * 9 + 1) * 1000));
阅读全文
posted @ 2019-07-16 15:45 cloud_shi
阅读(124)
评论(0)
推荐(0)
2019年7月15日
idea 自动创建多模块 不能自动编译代码
摘要: 把项目中的 .idea 删除。重启idea重新导入项目生成即可
阅读全文
posted @ 2019-07-15 00:34 cloud_shi
阅读(2376)
评论(0)
推荐(0)
2019年7月10日
java8 lam表达式 BigDecimal 相加
摘要: BigDecimal oneAmountAllTeam = combatTeamEntities.stream().map(CombatTeamEntity::getActivityAmountOne).reduce(BigDecimal::add).get();// 查找list 中满足条件的对象
阅读全文
posted @ 2019-07-10 16:51 cloud_shi
阅读(15174)
评论(1)
推荐(0)
2019年6月30日
tk.mybatis 减少简单 sql 的编写
摘要: 熟悉tk mybatis 的使用
阅读全文
posted @ 2019-06-30 11:28 cloud_shi
阅读(518)
评论(0)
推荐(0)
下一页
公告