会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Lthree
博客园
首页
新随笔
联系
订阅
管理
2022年9月
Java学习笔记---JDK8新特性(Lambda表达式)
摘要: 1. Lambda表达式基础 格式: () -> {}; // () 为lambda表达式的参数 // -> 为箭头操作符 // {} 为lambda方法体 lambda表达式结果为一个实例对象,用于直接实例化接口。 使用举例: Comparator<Integer> comparator = (n
阅读全文
posted @ 2022-09-20 22:18 __three
阅读(35)
评论(0)
推荐(0)
2022年5月
Java学习笔记---SpringBoot自动配置
摘要: 1、父项目依赖管理 <parent> <artifactId>spring-boot-starter-parent</artifactId> <groupId>org.springframework.boot</groupId> <version>2.3.4.RELEASE</version> </
阅读全文
posted @ 2022-05-19 20:24 __three
阅读(36)
评论(0)
推荐(0)
Java学习笔记----SSM框架整合
摘要: 1. 创建Maven Webapp项目 2. 补全maven项目的框架目录 > 3. 在pom.xml文件中添加相关依赖 4. 编写 SqlMapConfig.xml ( Mybatis相关配置文件 ) 大多配置被Spring整合,只需设置日志输出 <?xml version="1.0" encod
阅读全文
posted @ 2022-05-18 17:25 __three
阅读(33)
评论(0)
推荐(0)
公告