일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
- GIT
- 데이터베이스
- 스프링부트
- mssql
- springboot
- javascript
- Spring
- 리액트
- 쿼리
- java
- crud
- 컴포넌트
- 자바
- restapi
- component
- jdk
- 보안취약점
- Intellij
- EXTJS
- 스프링
- JS
- 개발공부
- React
- 자바스크립트
- sql
- 개발
- reactjs
- Vue
- table
- DATABASE
- Today
- Total
목록분류 전체보기 (147)
준준의 기록일지

csv파일에 로그인 정보를 담고 해당 login 요청에 아래와 같이 설정해주면 된다. 부하테스트는 로그인 : once only controller 로그인 이후 페이지 : loop controller 로그아웃 : once only controller 로 진행했다. 해당 페이지 정보를 알 기 위해서 HTTP(S) Test Script Recorder를 아래와 같이 설정하고 로컬에 아래 사진과 같이 프록시를 설정한 뒤 Start를 하고 페이지에 접속하면 해당 페이지 정보를 실시간으로 가져온다. Table 열 데이터 Sample - ID번호 이 번호를 보고 몇번째로 보는 부하인지 알 수 있다. Start Time - 보내기 시작한 시간으로 ms단위까지 나온다. Thread Name - 쓰레드 그룹 이름 Labe..

CMD dsadd로 AD계정을 생성할 수 있다. 여러 방법이 있지만, 가장 익숙한 for문을 사용하기로 결심.. 100개의 test계정 만들기. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 public class ad_account_create { public static void main(String[]args) { int account = 1; String temp2 = null; for(int i=0; i
//jh.won 시스템 메세지 프로퍼티에 추가. ArrayList message_list= new ArrayList(); OutputStream output=null; List sysLanguage = systemService.getSysLangauge(); if(sysLanguage != null && !sysLanguage.isEmpty()) { for(SysLanguage sysLang : sysLanguage) { String value = sysLang.getLangValue(); if(sysLang.getLangLocale().contains("ko")) { if(value != null && !value.isEmpty()) { value = AESCrypt.Decrypt(value); } }..
private static ResourceBundle fromClassLoader(String dir, String bundleName) throws MalformedURLException { File file = new File(dir); URL[] urls = {file.toURI().toURL()}; ClassLoader loader = new URLClassLoader(urls); // Properties file name = test.properties. The .properties extension is appended to bundle name return ResourceBundle.getBundle(bundleName, Locale.getDefault(), loader); } gist.gi..