일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- windows forms
- label
- pytorch
- Visual Studio
- C
- 기타 연주
- Docker
- OpenCV
- LIST
- paramiko
- C++
- Numpy
- VS Code
- 핑거스타일
- mysql
- Selenium
- 오류
- C#
- Python
- 채보
- pip
- ubuntu
- Linux
- YOLO
- JSON
- 프로그래머스
- SSH
- pandas
- error
- 컨테이너
- Today
- Total
목록Web (12)
기계는 거짓말하지 않는다
아래는 오류 메시지이다. WARN 29148 --- [io-8080-exec-10] .w.s.m.s.DefaultHandlerExceptionResolver : Resolved [org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'GET' not supported] 또는 Request method 'POST' not supported 여러가지 이유가 있지만 근본적인 원인은 Controller가 @RestController 라면 @PostMapping 또는 @GetMapping 과 @Controller 라면 @RequestMapping 의 RequestMethod.POST or GET 사용시 HTML의 데이터를 보내..
JavaScript var checkBox = document.getElementById("checkId");// id로 오브젝트 얻기 alert(checkBox.checked);// check 확인 checkBox.checked = true;// check 값 변경 checkBox.click();// 강제 클릭 JQuery var checkBox = $("#checkId");// id로 오브젝트 얻기 alert(checkBox.is(":checked"));// check 확인 checkBox.prop("checked", true);// check 값 변경 checkBox.trigger("click");// 강제 클릭 Test check 확인
Stack trace 가 많이 찍혀도 봐야한다. 첫 줄에 org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' ~ org.hibernate.tool.schema.spi.SchemaManagementException: Schema-validation: missing table [테이블 이름] 정곡으로 테이블이 없다고 알려준다. Caused by, 즉 원인을 쭉 읽으면 끝 부분에 Schema-validation: missing table [테이블 이름] 이라고 나와있다. 따로 협업 시 잠깐 잊게되면 발생할 수 있는 문제 중 하나이다. @Entity 선언이 됐을 경우 ..
JavaScript id 또는 name 으로 얻기 var element = document.getElementById("id");// get element by id var nameElement = document.getElementsByName("name")[0];// get elements by name name은 중복이 가능하고 id는 unique 하기 때문에 name은 getElements 로 복수이다. 인덱스가 붙는것을 확인. JQuery var element = $("#button");// get element by id var nameElement = $("tag[name='tagName']")[0];// get elements by name // tag에는 선언한 tag가 들어가야 한다. ..