会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
吴凯伟
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
48
49
50
51
52
53
54
55
56
···
81
下一页
2020年10月12日
@PostConstruct注解
摘要: 转载:https://blog.csdn.net/qq360694660/article/details/82877222
阅读全文
posted @ 2020-10-12 11:40 路要一步一步走
阅读(121)
评论(0)
推荐(0)
编辑
使用Spring @DependsOn控制bean加载顺序
摘要: 转载:https://blog.csdn.net/neweastsun/article/details/78775371
阅读全文
posted @ 2020-10-12 11:38 路要一步一步走
阅读(449)
评论(0)
推荐(0)
编辑
2020年10月10日
mybatis的parameterType可以不写(我一般都不写)
摘要: 多在mapper接口写@Param注解, 那么,你在mapper.xml alt+/会有提示 为什么不写parameterType也可以运行成功? 因为mybatis能自动识别,但返回值类型不能不写 (idea-mybatis插件也不生成parameterType,刚好,以后推荐不写paramete
阅读全文
posted @ 2020-10-10 20:22 路要一步一步走
阅读(4671)
评论(0)
推荐(0)
编辑
mybatis中传递参数时,会加上单引号
摘要: 1) 使用#{参数}传入会加上单引号,sql语句解析是会加上"", 比如 select * from table where name = #{name} ,传入的name为小李,那么最后打印出来的就是 select * from table where name = ‘小李’,就是会当成字符串来解
阅读全文
posted @ 2020-10-10 20:18 路要一步一步走
阅读(1687)
评论(0)
推荐(0)
编辑
IDEA 2020 导入项目 卡在 reading maven projects
摘要: 解决方法:移除工程目录/.mvn/maven-wrapper.properties 文件即可
阅读全文
posted @ 2020-10-10 19:22 路要一步一步走
阅读(871)
评论(0)
推荐(0)
编辑
常见网络攻击类型
摘要: 转载:https://blog.csdn.net/qq_37675827/article/details/77978505
阅读全文
posted @ 2020-10-10 12:15 路要一步一步走
阅读(225)
评论(0)
推荐(0)
编辑
2020年10月9日
fori,foreach和stream().forEach三种集合遍历方式的区别和使用场景
摘要: 转载:https://blog.csdn.net/qq_18630487/article/details/107514568
阅读全文
posted @ 2020-10-09 13:47 路要一步一步走
阅读(6035)
评论(0)
推荐(0)
编辑
Mybatis避免tinyint(1)数据自动转化为boolean
摘要: Mybatis逆向生成代码避免tinyint生成Boolean 1.tinyint长度设为2(不建议),对于is_delete类似字段,一位就够了 2.在链接数据库的url加 ?tinyInt1isBit=false" 会生成Byte,默认这个属性是true
阅读全文
posted @ 2020-10-09 12:25 路要一步一步走
阅读(649)
评论(0)
推荐(0)
编辑
JAVA foreach和普通for循环是否需要判断为null
摘要: 测试增强for循环是否需要判断为null 例1: public static void main(String[] args) { List<Object> list = null; for(Object s : list){ System.out.println("a"); } } 例2 publ
阅读全文
posted @ 2020-10-09 11:00 路要一步一步走
阅读(1063)
评论(0)
推荐(0)
编辑
sonar的安装以及使用
摘要: 转载:https://www.cnblogs.com/qlqwjy/p/10551283.html
阅读全文
posted @ 2020-10-09 10:28 路要一步一步走
阅读(115)
评论(0)
推荐(0)
编辑
上一页
1
···
48
49
50
51
52
53
54
55
56
···
81
下一页
公告