上一页 1 2 3 4 5 6 7 8 9 ··· 26 下一页
摘要: SimpleUrlAuthenticationFailureHandler 认证失败处理器,用来增加异常信息 AuthenticationEntryPoint ExceptionTranslationFilter异常处理,用于response返回数据给前端 阅读全文
posted @ 2021-10-31 00:18 fight139 阅读(389) 评论(0) 推荐(0) 编辑
摘要: SessionRepositoryFilter session存储过滤器 SessionRepository session存储器 阅读全文
posted @ 2021-10-30 23:03 fight139 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 自定义request Request request = new Request(HttpMethod.GET.toString(), "/_cat/indices"); request.addParameter("bytes", "b"); request.addParameter("format 阅读全文
posted @ 2021-09-09 21:13 fight139 阅读(57) 评论(0) 推荐(0) 编辑
摘要: 安装homebrew ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)" 更换国内镜像 cd /usr/local/Homebrew git remote set-url origin https:/ 阅读全文
posted @ 2021-09-06 20:33 fight139 阅读(37) 评论(0) 推荐(0) 编辑
摘要: Spring boot Mock MVC package com.xx.store.service.controller; import com.google.gson.Gson; import com.nisco.common.core.entity.ApiResult; import org.j 阅读全文
posted @ 2021-08-26 17:17 fight139 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 安装 下载 下载长期支持版 docker compose version: '3' services: postgres: image: postgres:12.3 restart: always container_name: postgres ports: - 5432:5432 volumes 阅读全文
posted @ 2021-08-19 23:26 fight139 阅读(82) 评论(0) 推荐(0) 编辑
摘要: ![image](https://img2020.cnblogs.com/blog/1250855/202108/1250855-20210818212457866-1817332504.png) ![image](https://img2020.cnblogs.com/blog/1250855/202108/1250855-20210818213020057-1878478899.png) ![ 阅读全文
posted @ 2021-08-18 22:39 fight139 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 环境 CentOS7.5 Docker 安装gitlab 1、拉取镜像 docker pull gitlab/gitlab-ce 2、创建数据卷路径 mkdir -p /data/docker/gitlab/{config,data,logs} 3、启动容器 docker run -d \ --na 阅读全文
posted @ 2021-08-17 22:13 fight139 阅读(38) 评论(0) 推荐(0) 编辑
摘要: BeanDefinition 实例化Bean,使用反射 BeanDefinition-->Bean 反射可以获取对象的注解、构造器、属性等信息。 Class<?> userClass = Class.forName("com.nisco.system.entity.User"); Construct 阅读全文
posted @ 2021-08-16 08:12 fight139 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 查看堆空间使用情况 jmap -heap 21907 # pid 导出hprof文件 jmap -dump:live,format=b,file=/home/heap.hprof 94067 安装JProfile java/jprofile文件夹 jprofile v11 阅读全文
posted @ 2021-08-09 12:31 fight139 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 概念 消息中间件 同一个topic中,无关的数据分散到不同的分区,有一定顺序的发送到同一个分区中。分区内部有序 给partition做副本,提高可靠性 只允许在主分区做w/r操作 整体流程: 阅读全文
posted @ 2021-08-02 18:36 fight139 阅读(24) 评论(0) 推荐(0) 编辑
摘要: ByteBuffer ByteBuffer 使用byte[]数组存储 capacity 数组长度 limit 第一个不可读取或写入的index mark 标记当前position,通过reset返回到mark位置 position 下一个要读取或写入的index int remaining() 获取 阅读全文
posted @ 2021-07-29 17:40 fight139 阅读(39) 评论(0) 推荐(0) 编辑
摘要: AnnotationConfigApplicationContext Java配置方式 @Test(expected = BeanCreationException.class) public void testFbkMethod() { new AnnotationConfigApplicatio 阅读全文
posted @ 2021-07-29 11:21 fight139 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 单体环境 jar <dependency> <groupId>javax.websocket</groupId> <artifactId>javax.websocket-api</artifactId> <version>1.1</version> </dependency> java import 阅读全文
posted @ 2021-07-21 20:56 fight139 阅读(813) 评论(0) 推荐(0) 编辑
摘要: 命令行方式 创建一个主题 [root@manager129 kafka_2.12-2.8.0]# ./bin/kafka-topics.sh --zookeeper localhost:2181 --create --topic heima -partitions 2 --replication-f 阅读全文
posted @ 2021-06-26 21:49 fight139 阅读(45) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 26 下一页