일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- database
- docker
- nginx
- JPA
- nodejs
- IntelliJ
- VSCode
- JavaScript
- gson
- dbeaver
- log4j2
- BPMN
- NCP
- MySQL
- Spring
- SAP
- react
- Java
- Windows
- maven
- springboot
- LOG4J
- gradle
- tibero
- Linux
- Git
- Kubernetes
- sapfiorielements
- useEffect
- mybatis
- Today
- Total
목록전체 글 (263)
두 손끝의 창조자
소스 코드 domain project 소스코드 package cothe.service; import cothe.entity.Yo; import javax.transaction.Transactional; public class YoService { private final YoRepository yoRepository; public YoService(YoRepository yoRepository) { this.yoRepository = yoRepository; } @Transactional public void updateName(Long id, String name) { Yo yo = yoRepository.findById(id).get(); yo.updateName(name); } @Transactio..
application.properties에 logging.level.org.apache.coyote.http11=debug 꼭 스프링부트가 아니어도 로거에 org.apache.coyote.http11 를 debug로 출력하게 하면 요청정보가 출력될 것임(톰켓을 썼을 때)
$/usr/libexec/java_home -V $/usr/libexec/java_home -v11 은 11버전의 경로 출력
brew install --cask anaconda 로 설치했을 때 anaconda 위치는 /opt/homebrew/anaconda3 이다. 이 위치가 path에 지정되어 있지 않기 때문에 conda를 terminal에서 바로 사용할 수 없다. 경로를 등록하자. .zshrc에 export PATH=[conda위치]:$PATH
작성한 테스트 스크립트를 많은 호스트가 실행을 하게 해서 타겟에 부하를 주고 그 결과를 모니터링 하는 솔루션이다. 크게 콘트롤러와 에이젼으로 구성된다. 콘트롤러는 웹 애플리케이션인데 테스트 스크립트를 생성하고 실행을 구성한다. 에이전트는 가상 사용자를 만들어서 부하를 발생시킨다. 콘트롤러에서 에이전트를 지정하고 에이전트에게 스크립트를 실행하게 하는 구조이다. 스크립트 Jython, Groovy 스크립트를 사용할 수 있다. IDE에서 Groovy 스크립트를 개발 및 테스트를 할 수 있고 이것을 에이전트에게 실행시킬 수있다. 다운로드 Releases · naver/ngrinder (github.com) Releases · naver/ngrinder enterprise level performance test..