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