전체 글 (232) 썸네일형 리스트형 [html/css] variable 한글로 사용이 가능하다 변수명이 한글일 경우 사용이 가능하다 https://m.blog.naver.com/PostView.naver?isHttpsRedirect=true&blogId=sgj4958&logNo=221856664007 [java] Object to int, Integer.toString vs String.valueOf 1. Obejct to int int i = (Integer) obejct; starting from Java 7 int i = (int) object; Beware, it can throw a ClassCastException if your object isn't an Integer and a NullPointerException if your object is null. This way you assume that your Object is an Integer (the wrapped int) and you unbox it into an int. int is a primitive so it can't be stored as an Object, the only way is to have an int co.. [server 서버] 개발 환경 local, dev, production local 로컬 개발 환경 => 개발자마다 설치된 서버 환경 (가장 주의해야 할 점은 모든 개발자가 같은 개발 환경을 사용해야 한다는 것, 정작 코드를 합칠 때 잘 작동했던 코드가 작동하지 않는 경우가 많다. maven을 사용할 경우 jdk나 library 버전을 지정할 수 있어 개발환경 차이에서 오는 문제점의 상당 부분을 해소할 수 있다) dev 서버 개발 환경 => 각 개발자들이 만든 코드를 합쳐 서버환경에서 테스트해 볼 수 있는 환경 (한 두개의 서버로 기능 구현이 가능한 정도로 작게 구축하는 것이 일반적이다) production 운영 환경 => 실제 서비스를 위한 운영 환경이다. 환경이 많아지면 다양 한 형태의 검증과 각 stakeholder별(테스터, 개발자, 사용자 등)로 테스트가 쉽지만 반대.. telnet 바로 끊김 현상, windows 탐색기색기 오작동 현상: 이더넷 연결 중 9080포트는 이상이 없으나 다른 ip로 접근 시 브라우저 "재연결되었습니다" 로 연결 불가 와이어샤크, 3dp_net 설치하고 리셋하고 브라우저 프록시 설정 없애고 포맷직전까지 오만가지 해보았으나 두 달 동안 새로고침과 싸우며 될 때 작업 추측: 윈도우즈 탐색기의 오작동으로 TCP 접근 불가인 듯 해결: 1) 전원 껐다 켠다. 2) 하단 상태바 우측 마우스 > 작업관리자 > windows 탐색기 재시작 3) 다른 프로그램이 (윈도우즈 시작 시 실행되는) 실행되지 않을 경우 의심한다 -> 전원 다시 4) 이더넷 TCP/IPv4 속성 다시 설정 (윈도우즈 설정 > 업데이트 및 보안 > 복구 > 시작 후 윈도우 다시시작 누르면 (만약 시스템이 비정상적일 경우) 인터넷 프로토콜 속성이 .. DOM 은 API 이다. https://www.w3.org/TR/REC-DOM-Level-1/introduction.html What is the Document Object Model? REC-DOM-Level-1-19981001 What is the Document Object Model? Editors Jonathan Robie, Texcel Research Introduction The Document Object Model (DOM) is an application programming interface (API) for HTML and XML documents. It defines the logical structure of d www.w3.org https://www.youtube.com/watch?v=rm2nsGJ.. 컴퓨터 키보드 특수 기호의 명칭 https://m.blog.naver.com/PostView.naver?isHttpsRedirect=true&blogId=nmnonmn&logNo=110033104659 컴퓨터 l 특수 기호의 명칭 2004.6.13 한국일보>소년한국일보>학습&NIE @... blog.naver.com https://m.blog.naver.com/h333j333/221132851951 Database와 Data의 차이 https://www.usgs.gov/faqs/what-are-differences-between-data-dataset-and-database#:~:text=Data%20are%20observations%20or%20measurements,data%20stored%20as%20multiple%20datasets. What are the differences between data, a dataset, and a database? | U.S. Geological Survey The USGS has a long and proud tradition of objective, unbiased science in service to the Nation. A reputation for impartiality and.. java.lang.NoClassDefFoundError 에러 / 경험횟수 2 https://nhj12311.tistory.com/84 java.lang.NoClassDefFoundError 에러 해결 방법 얼마 전 업무를 하다 java.lang.NoClassDefFoundError 를 만났는데 상당수 ClassNotFoundException와 헷갈리는 부분이 있을 것 같다. 과거에도 이 에러를 많이 만났지만 그때마다 어찌저찌 해결만 했을 뿐 명확 nhj12311.tistory.com 컴파일 환경에서는 클래스가 참조 되었으나 실행 환경에서는 해당 클래스를 찾을 수 없는 경우에 발생한다. (따라서 코드 작성시에는 문제가 없으나 spring boot나 was로 실행시킬 때 만나거나, 서버에 올렸을 때 해당 에러가 발생하게 된다.) 필자는 서버를 실행시킬 때 해당 에러가 발생하였다. 따.. 이전 1 ··· 11 12 13 14 15 16 17 ··· 29 다음