전체 글200 [JUNIT] initializationError 오류 오류 Method 'initializationError' not found. Opening the test class. 원인 Method 'initializationError' not found. Opening the test class. 발생원인은 프로젝트에 Junit 라이브러리가 등록되지 않았기 때문이다. 해결방법 1. 프로젝트 우클릭 -> Properties -> Java Build Path -> Libraries -> Add Library 2. 라이브러리 리스트 중 Junit 선택 > Next 3. Junit 버전 선택 4. Apply > Ok 5. 또는 프로젝트 우클릭 > Build Path > Add Libraries... 후에 위 2번부터 진행 2023. 7. 7. [AngularJs] because the scheme does not have a registered handler. 오류 ... because the scheme does not have a registered handler. 앵귤러 사용중에 a태그 클릭시 팝업이 뜨도록 소스 수정 중에 발견 신청하기 해당 버튼을 아무리 눌러도 모든 브라우저에서 기능이 동작하지 않고 있었다. 원인 개발자 도구를 열어서 확인해 보니 아래와 같이 변환되어 있었다. AngularJS에서 href 속성에 함수를 넣으면 "unsafe:"라는 접두어가 붙는 이유를 알아보니 보안 상의 이유였다. AngularJS는 사용자 입력과 관련된 보안 취약점을 방지하기 위해 몇 가지 보안 메커니즘을 가지고 있다. 그 중 하나는 사용자가 입력한 내용을 안전하게 처리하는 것인데. 예를 들어, 사용자가 입력한 콘텐츠가 HTML 코드를 포함하고 있을 때, Angul.. 2023. 7. 6. Vim Cheat Sheet [vim 단축키] https://vim.rtorr.com/lang/ko Vim Cheat Sheet Tip You can also use the following characters to specify the range: e.g. :.,$d - From the current line to the end of the file :.,1d - From the current line to the beginning of the file :10,$d - From the 10th line to the beginning of the file vim.rtorr.com 2023. 7. 6. [MSSQL] 컬럼 검색하기 특정 컬럼에 하나의 단어 검색 로직 --입력받을 파라미터 DECLARE @str NVARCHAR(MAX) SELECT * FROM table WHERE column LIKE '%'+@str+'%' 특정 컬럼에 입력 단어들을 검색하는 로직 --입력받을 파라미터 DECLARE @str NVARCHAR(MAX) SELECT * FROM table WHERE column LIKE (SELECT '%' + STRING_AGG(value, '%') +'%' FROM STRING_SPLIT(@str,',') 입력 단어 모두 특정 컬럼에 존재해야 한다. 여러 컬럼에 입력 단어들을 검색하는 로직 --입력받을 파라미터 DECLARE @str NVARCHAR(MAX) SELECT * FROM table WHERE ( (SE.. 2023. 7. 5. 이전 1 ··· 3 4 5 6 7 8 9 ··· 50 다음 반응형