Posts

이클립스 Could not load repository template extension contributed by 'org.eclipse.mylyn.bugzilla.ide' with connectorKind 'bugzilla' 오류

에러 로그에 이거 뜨길래 구글링 구글링 https://stackoverflow.com/questions/26508345/eclipse-unexpected-error-while-loading-repository-template-extensions This happens because your eclispe version does not have the Atlassian JIRA connector installed.  Here  is the Atlassian JIRA documentation. Installing JIRA in eclipse: Open the Eclipse software updates manager via 'Help', 'Install New Software'. Click 'Add'. The 'Add Site' window will display. Add this update site  http://update.atlassian.com/atlassian-eclipse-plugin/rest/e3.7  and click 'Add'. The 'Available Software' screen will appear again. Select 'All Available Sites' in the 'Work with' dropdown list. Select both 'Atlassian Connector' categories. Click next and install. 지금 회사에서 아틀라시안 빗버킷으로 깃쓰는데 이걸 따로 받아줘야하는듯.. 했는데 안없어졌다..ㅜㅠㅜ 다시 구글링 구글링.. https://issues.jboss.org/browse/JBDS-4360 여기서 댓글보니까 I installed all Spring IDE stuff including org.ecl...

이클립스 Error notifying a preference change listener. Check the log for details. java.lang.NullPointerException 오류

다른 경우는 모르겠는데 나같은 경우에는 javac -version이 안찾아져서 환경변수 설정에서 변수 이름 : CLASSPATH 변수 값 : %classpath%;.  ( 마침표 꼮꼮 ) 이걸 추가했더니 에러가 안난다. 싱기방기!!!!

SVN [Get repository folder children operation failed.] 오류!!!

이클립스 두 개 중 하나 안쓰다가 간만에 들어가니까 svn이 안됨 ㅠㅠ Get repository folder children operation failed. svn: E175002: connection refused by the server svn: E175002: OPTIONS request failed on '/svn/cii'  오류가 났다.ㅠㅠ 바쁜뎅 [해결방법] Window>Preference>Team>SVN>>SVN interface를 JavaHL 로 변경했다. 정상적으로 username/password 를 다시 물어오고 설정후 연결이 되었다. 출처:  https://ingbeeni.tistory.com/entry/java-eclipse-setting-총망라  [IngBeeni] SVNKit을 JavaHL로 바꿨더니 잘된다. 감사합니다 개발자님~~ 

화면에서 데이터가 안넘어가는 문제

정말 어이가 없다ㅠㅠ 분명 데이터는 확인을하는데 안넘어가.. 하루종일 분석하고 다 엎자했는데 근데 이게 망할 html 문제였다ㅜ form이 table을 감싸야지 table 안에 form이 있으면 안됨..

npp 플러그인 수동설치 안됨

수동설치해도 플러그인 메뉴에 안뜰때!! 방법을 찾았다 ㅎㅎ plugins폴더 밑에 플러그인과 같은 이름의 폴더를 만들어 준 후 그 폴더 안에 dll파일을 넣어주면 된당~~~

기초가 없는 나에게ㅠㅠ

어제 OKKY에 질문을 하나 올렸당. document와 contentDocument의 차이가 뭔가여? 근데 아무도 대답해주지않았다ㅠㅠ 구글에 difference between contentdocument and document 라고만 검색해서 아무것도 안나왔다ㅠㅠ 그래서 오늘아침 답변이 안달린걸보고 그냥 따로따로 찾기로 결심! * document (HTML DOM Document Object) When an HTML document is loaded into a web browser, it becomes a document object. The document object is the root node of the HTML document. *contentDocument(HTML DOM IFrame Object의 Method) The contentDocument property returns the Document object generated by a frame or iframe element. This property can be used in the host window to access the Document object that belongs to a frame or iframe element. document는 그냥 웹페이지 그 자체고 contentDocument는 html iframe 안의 메소드여따.. 그리고 내가 해결하고싶었던 window.createPopup = function (){         var popup = document.createElement("iframe"),             isShown = false, popupClicked = false;         popup.src = "about:blank"; ...

pylint install 할때 Can not perform a '--user' install. User site-packages are not visible in this virtualenv. 오류

항상 환경설정이 문제다 설정 짜증나.. vs code에서 파이썬 확장자 pylint install할때 (.venv) PS 파이썬폴더> & 파이썬폴더/.venv/Scripts/python.exe -m pip install -U pylint--user Can not perform a '--user' install. User site-packages are not visible in this virtualenv. 요렇게 뜰때는 기본설정 > 설정 > 확장 > settings.json(여기까지 어떻게 바로가는지 몰라서..)  > 설정 검색창에  python.globalModuleInstallation 를 true 로 바꿔주면 된다!