skill/Etc 12

MAC .jmx 실행 및 요약보고서 Error 확인 방법 - jmeter (성능테스트)

일단 jmeter 설치 $brew install jmeter jmeter 실행 : 콘솔에 jmeter 입력 하면 프로그램 열림 $jmeter 실행 하려는 .jmx 파일 열기. 테스트 실행 후 결과는 ‘요약 보고서’ 확인! 요약 보고서의 Error 를 확인 하고 싶을 때는 요약 보고서 폴더에서 우클릭 > Add > Listener > View Results Tree 클릭 요약 보고서 밑의 View Results Tree 확인 : 빨간색 에러 결과 확인! View Results Tree 에러만 보고 싶을 때는 표 상단 Log/Display Only : Error 체크

skill/Etc 2023.03.30

Gradle sync failed: No matching variant of org.springframework.boot:spring-boot-gradle-plugin:3.0.2 was found Error

-- gradle build error A problem occurred configuring root project 'test-project'. > Could not resolve all files for configuration ':classpath'. > Could not resolve org.springframework.boot:spring-boot-gradle-plugin:3.0.2. Required by: project : > org.springframework.boot:org.springframework.boot.gradle.plugin:3.0.2 -- gralde sync Gradle sync failed: No matching variant of org.springframework.boo..

skill/Etc 2023.01.30

mac host 변경 및 확인

1. 터미널 실행 (터미널 위치 : Launchpad > 기타 > 터미널) $ sudo nano /private/etc/hosts 127.0.0.1 localhost # 도메인이 localhost로 들어오면 127.0.0.1 서버로 접속 함. (수정 후) ctrl+o(저장), ctrl+x(나가기) $ dscacheutil -flushcache -- 캐시갱신 2. 확인 $ ping localhost PING localhost (127.0.0.1): 56 data bytes 64 bytes from 127.0.0.1: icmp_seq=0 ttl=64 time=0.044 ms 64 bytes from 127.0.0.1: icmp_seq=1 ttl=64 time=0.086 ms

skill/Etc 2020.09.11

maven project ClassNotFoundException 에러 발생시 확인

maven project 구성 시 pom.xml에 lib를 올바르게 등록했음에도 불구하고 서버 구동시 lib의 ClassNotFoundException이 발생한다면 다음을 확인해 보자. :D eclipse >[Project] > Properties > Deployment Assembly 위 경로에 Maven Dependencies가 들어있는지 확인한다. 없다면, 우측 Add 버튼 클릭한다. Java Build Path Enties > Next Btn > Maven Dependencies > Finish MavenDependencies가 올바르게 등록되었는지 확인하고, Deploy Path를 맞춘다. 그리고 서버를 재기동 해보자.

skill/Etc 2014.08.13