일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 자바
- 자바 기초
- 백엔드
- http
- java
- 공부기록
- java if
- 공부블로그
- til 2021
- 개발자
- inflearn spring
- java기초
- Java Spring
- Spring
- inflearn
- Today I Learned
- fastcampus
- 자바기초
- 인프런 http
- inflearn http
- 스프링
- 코린이
- 인프런 스프링
- 인프런
- 객체지향
- 개발일기
- 자바 스프링
- java 기초
- 기술블로그
- Til
- Today
- Total
목록전체 글 (16)
코딩하는 쨈이
Introduction This style guide acts as the official guide to follow in your projects. Udacity evaluators will use this guide to grade your projects. There are many opinions on the "ideal" style in the world of development. Therefore, in order to reduce the confusion on what style students should follow during the course of their projects, we urge all students to refer to this style guide for thei..
본 내용은 Inflearn의 ‘모든 ‘개발자를 위한 HTTP 웹 기본 지식’ 강의를 수강하면서 강의 및 강의노트를 참고하여 작성한 내용입니다. 23강. 4xx - 클라이언트 오류, 5xx - 서버 오류 4. 4xx - 클라이언트 오류 : 클라이언트의 요청에 잘못된 문법 등으로 서버가 요청을 수행할 수 없는 상태이다. 즉 오류의 원인은 클라이언트에게 있다는 뜻이다. 중요! 클라이언트가 이미 잘못된 요청, 데이터를 보내고 있기 때문에 똑같은 재시도를 해도 실패한다. 400 Bad Request : 클라이언트가 잘못된 요청을 해서 서버가 처리할 수 없다 요청, 구문, 메세지 등등이 오류의 원인이기 때문에 클라이언트는 요청 내용을 검토하고 보내야한다. 예) 요청 파라미터가 잘못되거나, API스펙이 맞지 않을 때..
클론을 잘못해서 .git 디렉토리를 지우고 처음부터 다시하려고 rm -r .git 을 했더니 override를 하겠냐며 아래 사진과 같은 오류가 나왔다. Stackoverflow에 rm -rf /path 를 하라길래 .git이 들어있는 경로인 /Users/chloe/Desktop/SixSense 를 했지만 override를 하겠냐는 물음표 살인마는 죽지 않았다... 아묻따 지우라는 커맨드인데 대체 왜 안지워지냐고 혈압이 오르던중 terminate한 후 처음부터 그냥 rm -rf .git을 했더니 바로 지워졌다..! 내친김에 .DS_Store도 같이 깔끔하게 지워줌!
[오류내용] *************************** APPLICATION FAILED TO START *************************** Description: The dependencies of some of the beans in the application context form a cycle: ┌─────┐ | timeTraceAop defined in class path resource [hello/hellospring/SpringConfig.class] └─────┘ Disconnected from the target VM, address: '127.0.0.1:53977', transport: 'socket' Process finished with exit code 1..
[오류내용] *************************** APPLICATION FAILED TO START *************************** Description: The bean 'timeTraceAop', defined in class path resource [hello/hellospring/SpringConfig.class], could not be registered. A bean with that name has already been defined in file [/Users/chloe/Study/Spring/hello-spring/out/production/classes/hello/hellospring/aop/TimeTraceAop.class] and overridin..
기껏 배워놓은 깃을 다른 공부 진도나간다는 핑계로 커밋을 안하고 있었더니 다 까먹나보다. 사실 이미 다른 소스코드들을 커밋해놓은 상태였는데 커밋하기 전에 디렉토리를 옮긴다고 이것저것 만지다가 에러가 나서 고치지도 못하고 다 날렸다.....🥲 그래서 그냥 새로 코드를 짜고 새로 커밋하려고 해서 그런지 오류가 떴는데 계속 push를 하려고하면 git push --set-upstream origin master 을 치라고 나오고, 그래서 똑같이 치면 hint: Updates were rejected because the tip of your current branch is behind hint: its remote counterpart. Integrate the remote changes (e.g. hint:..