摘要: 不同类型的循环 JavaScript 支持不同类型的循环: for - 多次遍历代码块 for/in - 遍历对象属性 while - 当指定条件为 true 时循环一段代码块 do/while - 当指定条件为 true 时循环一段代码块 只看For/In循环 <!DOCTYPE html> <h 阅读全文
posted @ 2019-09-08 23:35 HeliusKing 阅读(2467) 评论(0) 推荐(1) 编辑
摘要: 简介 这个注解很简单,就是导入spring的xml配置文件 直接来看spring官方文档: In applications where classes are the primary mechanism for configuring the container, it will still lik 阅读全文
posted @ 2019-09-08 17:30 HeliusKing 阅读(1196) 评论(0) 推荐(0) 编辑
摘要: 有什么用 该注解的作用类似于 ,即为组件中的属性进行赋值。 怎么用 首先是建立一个springboot的工程,不再赘述。 首先我们建立一个 类和一个 类。 再来看SpringBoot的主配置文件application.properties 在springboot的测试类中进行测试 控制台打印一下 结 阅读全文
posted @ 2019-09-08 17:07 HeliusKing 阅读(759) 评论(0) 推荐(0) 编辑