摘要: hdfs http://hadoop102:9870/ hbase http://hadoop102:16010/ 阅读全文
posted @ 2022-09-25 21:03 又一岁荣枯 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 文件下载 ResponseEntity用于控制器方法的返回值类型,该控制器方法的返回值就是响应到浏览器的响应报文使用ResponseEntity实现下载文件的功能 @RequestMapping("/testDown") public ResponseEntity<byte[]> testRespo 阅读全文
posted @ 2022-09-25 20:20 又一岁荣枯 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 使用ServletAPI向request域对象共享数据 @RequestMapping("/testServletAPI") public String testServletAPI(HttpServletRequest request){ request.setAttribute("testSco 阅读全文
posted @ 2022-09-25 18:46 又一岁荣枯 阅读(29) 评论(0) 推荐(0) 编辑
摘要: ERROR: org.apache.hadoop.hbase.PleaseHoldException: Master is initializing at org.apache.hadoop.hbase.master.HMaster.checkInitialized(HMaster.java:282 阅读全文
posted @ 2022-09-25 11:47 又一岁荣枯 阅读(499) 评论(0) 推荐(0) 编辑
摘要: 参考 dlib提取人脸并保存 # -*- codeing: utf-8 -*- import sys import os import cv2 import dlib input_dir = './lfw' output_dir = './other_faces' size = 64 if not 阅读全文
posted @ 2022-09-25 09:41 又一岁荣枯 阅读(132) 评论(0) 推荐(0) 编辑