上一页 1 2 3 4 5 6 7 8 9 10 ··· 44 下一页
摘要: 毕业、定制 761273133 直接上图 阅读全文
posted @ 2020-04-29 23:05 韦邦杠 阅读(9572) 评论(0) 推荐(0) 编辑
摘要: varchar2(size type),size最大为4000,type可为char或者byte,默认是byte。 varchar2最多存放4000字节的数据,不管type是char还是byte。所以如果你设置varchar2(4000 char),你可以存入4000个字母,但是不能存入4000个汉 阅读全文
posted @ 2020-04-29 09:41 韦邦杠 阅读(2175) 评论(0) 推荐(0) 编辑
摘要: 1、打开夜神模拟器 CMD命令管理员权限执行 nox_adb connect 127.0.0.1:62001 #连接夜神模拟器IP及端口 nox_adb devices #显示连接设备,即连接成功 2、HbuilderX与夜神连接 HbuilderX设置ADB及端口 打开HbuilderX 设置手机 阅读全文
posted @ 2020-04-26 09:43 韦邦杠 阅读(387) 评论(0) 推荐(0) 编辑
摘要: vue cli3.x 使用方式: 1、直接简单配置 在vue.config.js加入 devServer: { proxy: 'http://localhost:8080' } 前端直接axios 调用方式: 2、/API 方式代理 module.exports = { lintOnSave: fa 阅读全文
posted @ 2020-03-21 14:11 韦邦杠 阅读(5977) 评论(1) 推荐(0) 编辑
摘要: 条件:搭建好kafka环境 搭建zookeeper+kafka地址:https://www.cnblogs.com/weibanggang/p/12377055.html 1、java无注解方式 加入kafka包: <dependency> <groupId>org.apache.kafka</gr 阅读全文
posted @ 2020-03-04 21:55 韦邦杠 阅读(10224) 评论(0) 推荐(2) 编辑
摘要: 说明:教程使用4台服务器,1台用作zookeeper,3台用kafka 必备条件:jdk kafka自带zookeeper 也可以使用kafka内置的zookeeper 一、zookeeper下载安装 1、首先去官网下载zookeeper:https://downloads.apache.org/z 阅读全文
posted @ 2020-02-28 16:06 韦邦杠 阅读(6452) 评论(0) 推荐(1) 编辑
摘要: /** * 获取真实ip地址 * @param request * @return */ public static String getIpAddress(HttpServletRequest request) { String ip = request.getHeader("x-forwarde 阅读全文
posted @ 2019-12-06 15:31 韦邦杠 阅读(1195) 评论(0) 推荐(0) 编辑
摘要: 解决方案 在使用JAVA发起http请求的时候,经常会遇到这个错误,我们copy请求地址在浏览器中运行的时候又是正常运行的,造成这个错误的原因主要是因为请求的URL中包含空格,这个时候我们要使用URLEncoder.encode(timestamp,"utf-8")对含有空格的参数进行处理;(注:只 阅读全文
posted @ 2019-12-06 10:12 韦邦杠 阅读(4692) 评论(0) 推荐(0) 编辑
摘要: 要求更新 使用axios报错 - Running completion hooks...error: 'options' is defined but never used (no-unused-vars) at src\plugins\axios.js:42:32: );Plugin.instal 阅读全文
posted @ 2019-11-27 23:11 韦邦杠 阅读(3914) 评论(0) 推荐(0) 编辑
摘要: String filePath = this.getClass().getResource("/").getPath(); filePath = filePath.replaceAll("\\/|"+Matcher.quoteReplacement("\\"),Matcher.quoteReplac 阅读全文
posted @ 2019-11-20 15:02 韦邦杠 阅读(227) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 44 下一页