上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 43 下一页
摘要: org.springframework.context.support.AbstractApplicationContext refresh 阅读全文
posted @ 2020-04-14 16:58 fly_bk 阅读(550) 评论(0) 推荐(0) 编辑
摘要: @Component+@Bean 方式 FactoryBean方式 BeanDefinitionRegistryPostProcessor方式 ImportBeanDefinitionRegistrar方式 ImportBeanDefinitionRegistrar方式测试 阅读全文
posted @ 2020-04-13 16:13 fly_bk 阅读(192) 评论(0) 推荐(0) 编辑
摘要: ioc/beans.xml 测试 阅读全文
posted @ 2020-04-13 15:37 fly_bk 阅读(368) 评论(0) 推荐(0) 编辑
摘要: 监听器模式复习 main测试 springboot测试 自定义ApplicationListener监听器两种方式 META INF/spring.factories application.properties 阅读全文
posted @ 2020-04-13 15:33 fly_bk 阅读(196) 评论(0) 推荐(0) 编辑
摘要: application.properties META INF/spring.factories 测试 阅读全文
posted @ 2020-04-12 17:10 fly_bk 阅读(168) 评论(0) 推荐(0) 编辑
摘要: ```java import java.nio.charset.Charset; import java.nio.file.Files; import java.nio.file.Paths; import java.util.Arrays; import java.util.function.IntSupplier; import java.util.stream.IntStream; impo 阅读全文
posted @ 2020-04-07 10:26 fly_bk 阅读(81) 评论(0) 推荐(0) 编辑
摘要: ```java import java.util.Arrays; import java.util.List; import java.util.OptionalInt; import java.util.stream.IntStream; import java.util.stream.Stream; /** * 数值流 */ public class MapDemo3 { public sta 阅读全文
posted @ 2020-04-07 09:08 fly_bk 阅读(194) 评论(0) 推荐(0) 编辑
摘要: ```java /** * 交易员 */ public class Trader { private final String name; private final String city; public Trader(String name, String city) { this.name = name; this.city = city; } public String getName() 阅读全文
posted @ 2020-04-06 17:05 fly_bk 阅读(125) 评论(0) 推荐(0) 编辑
摘要: 筛选与切片 映射 查找和匹配 归约(折叠) 阅读全文
posted @ 2020-04-06 16:28 fly_bk 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 初体验 流只能消费一次 内部迭代与外部迭代 总结 流是“从支持数据处理操作的源生成的一系列元素”。 流利用内部迭代:迭代通过filter、map、sorted等操作被抽象掉了。 流操作有两类:中间操作和终端操作。 filter和map等中间操作会返回一个流,并可以链接在一起。可以用它们来设置一条流水 阅读全文
posted @ 2020-04-06 14:10 fly_bk 阅读(207) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 43 下一页