上一页 1 ··· 33 34 35 36 37 38 39 40 41 ··· 50 下一页
  2022年7月6日
摘要: String reqContent = "abcdef中文"; //new String("abcdefee".getBytes()," GBK "); System.out.println("reqContent="+ reqContent); String reqContentTest = ne 阅读全文
posted @ 2022-07-06 14:18 oktokeep 阅读(537) 评论(2) 推荐(0) 编辑
  2022年6月30日
摘要: 虚拟机栈是属于线程私有的,每个线程都会有一个虚拟机栈,随线程的创建而创建,消失而消失。它由一个个的栈帧组成,线程每次调用一个方法,就会有一个栈帧生成,并压栈。方法调用完之后,栈帧则出栈。当栈的深度不够,即栈的大小不足以放下所有的栈帧的时候,就会抛栈溢出的异常。 解决问题: 要把栈大小设置的大一点,要 阅读全文
posted @ 2022-06-30 08:10 oktokeep 阅读(124) 评论(1) 推荐(0) 编辑
  2022年6月23日
摘要: 1.idea设置jdk 2.idea设置文件编码格式utf-8 create utf-8 files with NO BOM 不要更改,否则编译会出错误。 阅读全文
posted @ 2022-06-23 09:03 oktokeep 阅读(786) 评论(0) 推荐(0) 编辑
摘要: 第一种是通过not in的方式去处理: select id from table_a where id not in (select id from table_b); 第二种则是通过左连接(left join)的方式: select * from table_a as a left join ta 阅读全文
posted @ 2022-06-23 09:01 oktokeep 阅读(5674) 评论(0) 推荐(1) 编辑
摘要: <select id="selectBlogs" parameterType="map"> SELECT * FROM blog WHERE user_id = #{user_id} AND blog_id IN <foreach item="tempId" collection="blogIdLi 阅读全文
posted @ 2022-06-23 08:53 oktokeep 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 在导航栏点击Add Configuration…或者(打开菜单Run->Edit Configuration) 点击+号,选择Tomcat Server ->选择Local->在Name中输入新的服务器的名字,点击”Application Server“ 后面的”Configure…“,弹出Appl 阅读全文
posted @ 2022-06-23 08:43 oktokeep 阅读(1047) 评论(1) 推荐(0) 编辑
  2022年6月11日
摘要: 1.pom 导入jar <dependency> <groupId>org.elasticsearch.client</groupId> <artifactId>elasticsearch-rest-high-level-client</artifactId> <version>7.17.4</ve 阅读全文
posted @ 2022-06-11 15:17 oktokeep 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 1.下载,解压缩,命令行前不要留空格 官网下载地址: https://www.elastic.co/cn/downloads/elasticsearch https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-8.2.2- 阅读全文
posted @ 2022-06-11 14:34 oktokeep 阅读(1243) 评论(3) 推荐(0) 编辑
摘要: 1.exchange类型,rabbitmq交换机类型 exchange类型fanout 扇形交换机,它会把所有发送到该交换机的消息路由到所有与该交换机绑定的队列中。direct 直连交换机,它会把消息路由到那些BindingKey和RoutingKey完全匹配的队列中。topic 主题交换机,与di 阅读全文
posted @ 2022-06-11 14:11 oktokeep 阅读(422) 评论(0) 推荐(0) 编辑
  2022年6月10日
摘要: windows rabbitmq安装1.环境变量,关键是rabbitmq_server需要与erlang版本对应,否则无法使用。 rabbitmq下载页https://github.com/rabbitmq/rabbitmq-server/releases 选择下载:rabbitmq-server- 阅读全文
posted @ 2022-06-10 13:56 oktokeep 阅读(219) 评论(1) 推荐(0) 编辑
上一页 1 ··· 33 34 35 36 37 38 39 40 41 ··· 50 下一页