2020年3月21日

摘要: hive中join都有哪些 Hive中除了支持和传统数据库中一样的内关联(JOIN)、左关联(LEFT JOIN)、右关联(RIGHT JOIN)、全关联(FULL JOIN),还支持左半关联(LEFT SEMI JOIN) 内关联(JOIN) 只返回能关联上的结果。 左外关联(LEFT [OUTE 阅读全文
posted @ 2020-03-21 16:49 michaelchan 阅读(144) 评论(0) 推荐(0) 编辑

2018年12月15日

摘要: # Copyright 2015 gRPC authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the Li... 阅读全文
posted @ 2018-12-15 18:35 michaelchan 阅读(435) 评论(0) 推荐(0) 编辑

2017年12月19日

摘要: 注解@Scheduled 可以作为一个触发源添加到一个方法中,例如,以下的方法将以一个固定延迟时间5秒钟调用一次执行,这个周期是以上一个调用任务的完成时间为基准,在上一个任务完成之后,5s后再次执行: @Scheduled(fixedDelay = 5000) public void doSomet 阅读全文
posted @ 2017-12-19 09:37 michaelchan 阅读(623) 评论(0) 推荐(0) 编辑

2017年8月24日

摘要: vuejs数据双向绑定 下面我们来实现数据双向绑定的例子,我们使用vuejs的v-model属性 注意 v-model 指令在表单控件元素上创建双向数据绑定。它会根据控件类型自动选取正确的方法来更新元素。 vuejs双向绑定并不能适用于所有的html表单,限制为input、select、textar 阅读全文
posted @ 2017-08-24 22:02 michaelchan 阅读(132) 评论(0) 推荐(0) 编辑

2017年8月19日

摘要: SpringCloud提供了微服务的一整套组件,SpringCloud以SpringBoot为基础。 配置文件可以使用application.properties文件,也可以是.yml格式的文件 阅读全文
posted @ 2017-08-19 15:22 michaelchan 阅读(98) 评论(0) 推荐(0) 编辑

2017年8月10日

摘要: required Whether the parameter is required. 是否需要参数。 Default is true, leading to an exception thrown in case of the parameter missing in the request. S 阅读全文
posted @ 2017-08-10 08:29 michaelchan 阅读(94) 评论(0) 推荐(0) 编辑

2017年8月6日

摘要: Spring 2.5 引入了一种基于注解的编程模式,注解支持 Servlet MVC 和 Portlet MVC。控制器可以不必继承特定的基类或实现特定的接口。 @RequestMapping 常用属性 (1)value 指定请求的实际地址,即 value 属性将 URL 映射到方法上。 (2)me 阅读全文
posted @ 2017-08-06 15:16 michaelchan 阅读(115) 评论(0) 推荐(0) 编辑

导航