Gatling 性能测试

Gatling Injectionhttps://gatling.io/docs/gatling/reference/current/core/injection/setUp( scn.injectOpen(rampUsersPerSec(100).to(700).during(Duration.ofSeconds(60)))).protocols(httpProtocol); constantConcurrentUsers(nbUsers).during(duration): Inject so that number of concurrent users in the system is constant rampConcurrentUsers(fromNbUsers).to(toNbUsers).during(duration): Inject so that number of concurrent users in the system ramps linearly from a number to another Load profileFi...

Spring Security 核心代码

FilterChainProxy - Trying to match request against DefaultSecurityFilterChain [RequestMatcher=any request,Filters=[org.springframework.security.web.session.DisableEncodeUrlFilterorg.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilterorg.springframework.security.web.context.SecurityContextHolderFilterorg.springframework.security.web.header.HeaderWriterFilterorg.springframework.security.web.csrf.CsrfFilterorg.springframework.security.web.authentication.logout.Log...

OpenLDAP配置

LDAP协议LDAP是轻量目录访问协议,英文全称是Lightweight Directory Access Protocol,一般都简称为LDAP。LDAP是一个开放的,中立的,工业标准的应用协议,通过IP协议提供访问控制和维护分布式信息的目录信息。OpenLDAP使用LMDB数据库软件LMDB是基于Btree-based的高性能mmap key-value数据库,是在BerkeleyDB的基础上改进来的。支持事务操作,支持多进程访问。只产生两个文件data.mdb与lock.mdb。LDAP是一种通讯协议,LDAP连接服务器的连接字串格式为:ldap://servername/DN,其中DN的元素包含包含UID/CN + OU + DC。 Name Description dc (Domain Component) 域名的部分,其格式是将完整的域名分成几部分,如域名为localdomain.com变成dc=localdomain,dc=com。 ou(Organization ...

windows-cmd

chcpchcp用于设置控制台编码格式 936 简体中文(GB2312) 65001 Unicode(UTF-8)copycopy /b a.jpg+b.jpg new.jpgerrorlevel<!-- 如果返回的错误码值大于或等于0的时候触发 -->IF ERRORLEVEL 0 ( echo "hello world")<!-- 如果返回的错误码值等于0的时候触发 -->IF %ERRORLEVEL% == 0 ( echo "hello world")mklinkMKLINK Link Target # 创建指向文件的符号链接MKLINK /D Link Target # 创建指向文件夹的符号链接MKLINK /J Link Target # 创建指向文件夹的软链接(联接)MKLINK /H Link Target # 创建指向文件的硬链接J:\bin>mklink /j php "J:/bin/php-5.6.30-Win32-VC11-x64"为 php <<===&g...

VirtualBox使用

VirtualBox网络连接方式详解 介绍VirtualBox中常见的几种网络连接方式:网络地址转换(NAT)桥接网卡(Bridged networking)内部网络(Internal networking)仅主机适配器(Host-only network)网络地址转换(NAT)网络地址转换是虚拟机访问外网最简单的方式。通常,网络地址转换不需要在宿主机上做任何网络配置。因此,网络地址转换是VirtualBox默认的网络连接方式。采用NAT网络连接方式的虚拟机就像一台真实存在的计算机,通过”路由“连接到外网。这里谈到的路由实际上是指的Virtualbox网路引擎,负责将网络数据在宿主机与虚拟机之间透明的传输。这种隔离机制通过禁止虚拟机之间相互通讯,从而使得安全性得以最大化。NAT网络连接方式的劣势在于,这种模式类似于路由器下的私有网络,无法从外网去访问该虚拟机。如果虚拟机要作为一台供外网访问的服务器,如果不配置端口转发,是不能够用这种方式来运行的。虚拟机发送的网络数据帧被Virtualbox NAT引擎接收后,使用宿主机将数据重新打包发送。从外部看来,就如同网络数据包是从宿主机上...

Sublime使用

Sublime3用户设置{ "color_scheme": "Packages/User/SublimeLinter/Monokai (SL).tmTheme", "draw_white_space": "selection", "font_face": "Courier New", "font_size": 12, "highlight_line": true, "tab_size": 4, "translate_tabs_to_spaces": false, "show_encoding": true, "show_line_endings": true}Sublime快捷键设置[ // Select Lines { "keys": ["ctrl+shift+up"], "command": "select_lines", "args": {"forward": false} }, { "keys": ["ctrl+shift+down"], "command": "select_...