[php] 목록 제목 검색 글자 색 다르게 표기 $title = preg_replace_callback("/" . preg_quote($search, '/') . "/i", function($data) use ($search) { return (strcasecmp($data[0], $search) == 0) ? '' . $data[0] . '' : $data[0]; }, $rows[title]); skill/Etc 2024.06.04
[javascript] 목록 검색 글자 색 다르게 표기 var title = list[i].title.replace(new RegExp(search, "gi"), function(data) { return ((data.toLowerCase() == search.toLowerCase())? (''+data+'') : data); }); skill/Etc 2024.06.03
공동 작업 시, npm install, npm audit fix --force 오류 $npm install 오류 $npm audit fix --force 오류 $npm audit fix --force 오류 .... node_modules 삭제 package.json 원복 package-lock.json 원복 $npm install --no-audit 정상 확인 npm audit fix--force 를 사용하면 프로젝트가 망가질 수도 있다는 점! skill/Etc 2023.03.30
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
Android Studio strings.xml 오류 is translated here but not found in default locale 해결 Android Studio strings.xml 오류 아래 메세지 오류 날 때,is translated here but not found in default locale해결방안strings.xml 파일에서 아래로 변경 skill/Etc 2019.02.11
log4j mybatis 로그 나오지 않을 때 org.mybatis mybatis 3.1.0 org.slf4j slf4j-log4j12 1.7.6 skill/Etc 2016.12.19
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