会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
吴凯伟
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
36
37
38
39
40
41
42
43
44
···
81
下一页
2020年11月30日
Java中Integer和int之间的转换
摘要: int到Integer: int a=3; Integer A=new Integer(a); 或: Integer A=Integer.valueOf(a); Integer到int: Integer A=new Integer(5); int a=A.intValue(); 至于Integer.
阅读全文
posted @ 2020-11-30 09:28 路要一步一步走
阅读(2155)
评论(0)
推荐(1)
编辑
数组之间的转化
摘要: 转载:https://www.cnblogs.com/lisongyu/p/10142897.html
阅读全文
posted @ 2020-11-30 09:16 路要一步一步走
阅读(56)
评论(0)
推荐(0)
编辑
2020年11月29日
mybatis注解开发 @Delete 批量删除
摘要: 注意:<script></script>@Delete("<script> delete from product where id in <foreach collection='array' item='id' open='(' separator=',' close=')'>#{id}</fo
阅读全文
posted @ 2020-11-29 19:19 路要一步一步走
阅读(2877)
评论(0)
推荐(0)
编辑
2020年11月28日
lombok不支持enum类型
摘要: 今天在使用枚举时想着少写getter方法和构造方法,结果加上注解后说是只支持class类型
阅读全文
posted @ 2020-11-28 22:00 路要一步一步走
阅读(693)
评论(0)
推荐(0)
编辑
2020年11月27日
java 中负数取模
摘要: 转载:https://blog.csdn.net/qq_37444478/article/details/77197870
阅读全文
posted @ 2020-11-27 10:30 路要一步一步走
阅读(332)
评论(0)
推荐(0)
编辑
2020年11月26日
什么叫热更新和冷更新
摘要: 热更新的时候不需要关闭服务器,直接重新部署项目就行。冷的自然就是关闭服务器后再操作
阅读全文
posted @ 2020-11-26 12:14 路要一步一步走
阅读(3522)
评论(0)
推荐(0)
编辑
springboot属性注入的四种方式
摘要: 10.springboot属性注入 10.1通过以前spring中配置 java配置主要靠java类和一些注解来达到和xml配置一样的效果,比较常用的注解有: @Configuration:声明一个类作为配置类,代替xml文件@Bean:声明在方法上,将方法的返回值加入Bean容器,代替<bean>
阅读全文
posted @ 2020-11-26 10:19 路要一步一步走
阅读(2134)
评论(0)
推荐(0)
编辑
2020年11月25日
事务隔离级别之Read Uncommitted
摘要: 转载:https://blog.csdn.net/oyw5201314ck/article/details/79621347
阅读全文
posted @ 2020-11-25 14:09 路要一步一步走
阅读(41)
评论(0)
推荐(0)
编辑
创建eureka注册中心关于spring-cloud-starter-netflix-eureka-server导包问题
摘要: 转载:https://blog.csdn.net/SSLJY_YCFH/article/details/105085992
阅读全文
posted @ 2020-11-25 13:47 路要一步一步走
阅读(425)
评论(0)
推荐(0)
编辑
Objects.equals方法的坑
摘要: 转载:https://blog.csdn.net/kswkly/article/details/106238405
阅读全文
posted @ 2020-11-25 11:51 路要一步一步走
阅读(242)
评论(0)
推荐(0)
编辑
上一页
1
···
36
37
38
39
40
41
42
43
44
···
81
下一页
公告