上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 77 下一页
摘要: 采用nginx作反向代理,出现了一个诡异的问题,小文件可以提交,大文件会报500内部错误。这个是什么原因导致的呢? 查wiki可知,上传文件大小相关的有三个配置 client_body_buffer_size 配置请求体缓存区大小, 不配的话, client_body_temp_path 设置临时文 阅读全文
posted @ 2017-11-01 10:23 ahuo 阅读(357) 评论(0) 推荐(0) 编辑
摘要: 数据快照路径 C:\Users\admin\AppData\Local\Parity\Ethereum\chains\ethereum\db\906a34e69aec8c0d\snapshot\restoration\db 阅读全文
posted @ 2017-10-12 15:01 ahuo 阅读(183) 评论(0) 推荐(0) 编辑
摘要: mongosql说明 db.users.find() select * from users 从user表中查询所有数据 db.users.find({“username” : “joe”, “age” : 27}) select * from users where “username” = “j 阅读全文
posted @ 2017-10-10 17:07 ahuo 阅读(570) 评论(0) 推荐(0) 编辑
摘要: <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> <dependency> <groupId>org 阅读全文
posted @ 2017-09-29 10:34 ahuo 阅读(227) 评论(0) 推荐(0) 编辑
摘要: MO='mongo'$MO << EOFuse testdbdb.dropDatabase()show dbsexit;EOF 阅读全文
posted @ 2017-09-27 17:01 ahuo 阅读(403) 评论(0) 推荐(0) 编辑
摘要: mongodump -h dbhost -d dbname -o dbdirectory mongorestore -h dbhost -d dbname --directoryperdb dbdirectory 阅读全文
posted @ 2017-09-27 17:00 ahuo 阅读(185) 评论(0) 推荐(0) 编辑
摘要: <insert id="insert" useGeneratedKeys="true" keyProperty="id" parameterType="db.TbuserWithBLOBs"> record.getId()就是新的ID 阅读全文
posted @ 2017-09-15 17:33 ahuo 阅读(135) 评论(0) 推荐(0) 编辑
摘要: Tbuser record = new Tbuser(); TbuserWithBLOBs bloBs = tbuserMapper.selectByPrimaryKey((long) 34); bloBs.setCardid("00000"); tbuserMapper.updateByPrimaryKeyWithBLOBs(bloBs); ... 阅读全文
posted @ 2017-09-13 10:13 ahuo 阅读(324) 评论(0) 推荐(0) 编辑
摘要: @RequestMapping(value = "/post",method = RequestMethod.POST) @ResponseBody String GPost(@RequestParam("img1") MultipartFile[] img1,@RequestParam("img2") MultipartFile[] img2) throws IOExcept... 阅读全文
posted @ 2017-09-11 17:37 ahuo 阅读(222) 评论(0) 推荐(0) 编辑
摘要: 端口修改 java -jar demo.jar --server.port=8011 或 src\main\resources\application.properties server.port=8011 资源 优先级顺序为:META/resources > resources > static 阅读全文
posted @ 2017-09-07 09:52 ahuo 阅读(263) 评论(0) 推荐(0) 编辑
摘要: NDK开发的代码打印方式 #include <utils/CallStack.h> extern "C" void dumping_callstack(void);void dumping_callstack(void){ android::CallStack stack;stack.update( 阅读全文
posted @ 2017-08-04 17:59 ahuo 阅读(806) 评论(0) 推荐(0) 编辑
摘要: setprop persist.sys.usb.config webcamecho 0 > /sys/devices/virtual/android_usb/android0/enableecho "webcam" > /sys/class/android_usb/android0/function 阅读全文
posted @ 2017-08-02 16:29 ahuo 阅读(534) 评论(0) 推荐(0) 编辑
摘要: find . -name "*.h" -mtime -10 -type f -print find . -regex ".*\.\(c\|h\)" -mtime -10 -type f -print 阅读全文
posted @ 2017-07-13 11:07 ahuo 阅读(1147) 评论(0) 推荐(0) 编辑
摘要: #define KERN_EMERG "<0>" /* system is unusable */#define KERN_ALERT "<1>" /* action must be taken immediately */#define KERN_CRIT "<2>" /* critical co 阅读全文
posted @ 2017-06-30 11:14 ahuo 阅读(273) 评论(1) 推荐(0) 编辑
摘要: 安装 ubuntu下要安装ack-grep,因为在debian系中,ack这个名字被其他的软件占用了。 sudo apt-get install ack-grep 特点 大家都说自己的东西好,因此ack官网列出了这工具的5大卖点: 速度非常快,因为它只搜索有意义的东西。 更友好的搜索,忽略那些不是你 阅读全文
posted @ 2017-06-30 10:16 ahuo 阅读(1985) 评论(0) 推荐(0) 编辑
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 77 下一页