Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

7/13 #9

Open
wants to merge 14 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions July/2024-07-02.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
TIL Template

날짜: 2024-07-03

스크럼
- 학습 목표 1 : 팀스터디 준비(운영체제)
- 학습 목표 2 : 수업 듣기

### 오늘의 도전 과제와 해결 방법
- 도전 과제 1: 팀스터디 준비

### 오늘의 이슈



### 오늘 한 일

1. 수업 듣기 (9~6)

2.
https://alan0308.tistory.com/141
https://alan0308.tistory.com/142
-> SQL 2문제 해결

3. 팀스터디 준비

### 오늘의 회고
무난했지만 수업 집중이 너무 안됐다....
내일부턴 잘 집중하자

30 changes: 30 additions & 0 deletions July/2024-07-03.Md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
TIL Template

날짜: 2024-07-03

스크럼
- 학습 목표 1 : 팀스터디 준비(운영체제)
- 학습 목표 2 : 수업 듣기

### 오늘의 도전 과제와 해결 방법
- 도전 과제 1: 팀스터디 준비

### 오늘의 이슈



### 오늘 한 일

1. 수업 듣기 (9~6)

2.
https://alan0308.tistory.com/141
https://alan0308.tistory.com/142
-> SQL 2문제 해결

3. 팀스터디 준비

### 오늘의 회고
무난했지만 수업 집중이 너무 안됐다....
내일부턴 잘 집중하자

35 changes: 35 additions & 0 deletions July/2024-07-04.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
TIL Template

날짜: 2024-07-04

스크럼
- 학습 목표 1 : 팀스터디 준비(운영체제)
- 학습 목표 2 : 수업 듣기

### 오늘의 도전 과제와 해결 방법
- 도전 과제 1: 팀스터디 준비

### 오늘의 이슈

1. 스프링부트에서 세션 인증 구현이 잘 안돼서
implementation 'org.springframework.boot:spring-boot-starter-security' 을 build.gradle에 추가해줌

되던 것들이 안돼서 너무 열받았다
금요일 오전에 이 이슈들을 다시 해결하려고 한다

### 오늘 한 일

1. 스프링부트 과제

2. 팀 스터디 (22:30 ~ 00:30)

3.
https://alan0308.tistory.com/143
-> SQL 1문제 해결

4. 팀스터디 준비

### 오늘의 회고
오전에 시간을 너무 날린다
잘생각보단 잠을 깰 생각을 하기

27 changes: 27 additions & 0 deletions July/2024-07-05.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
TIL Template

날짜: 2024-07-04

스크럼
- 학습 목표 1 : 스프링부트 CRUD
- 학습 목표 2 : 딥다이브

### 오늘의 도전 과제와 해결 방법
- 도전 과제 1: 스프링부트 과제

### 오늘의 이슈

1. 스프링부트에서 잘 구현 안되던 부분 해결 완료


### 오늘 한 일

1. 스프링부트 과제

2. 딥다이브


### 오늘의 회고
금요일이다
풀잠때리고 행복하게 돌아와서 공부하겠습니다..

46 changes: 46 additions & 0 deletions July/2024-07-06.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
TIL Template

날짜: 2024-07-06

스크럼
- 학습 목표 1 : 스프링부트 CRUD
- 학습 목표 2 : 알고리즘 && SQL 문제 풀이
- 학습 목표 3 : (번외) 하반기 지원 회사 조사

### 오늘의 도전 과제와 해결 방법
- 도전 과제 1: 스프링부트 CRUD

### 오늘의 이슈

1. 스프링부트에서 잘 구현 안되던 부분
-> 자꾸 댓글 등록 시간을 못 불러와서, 왜인가 했는데 post를 자꾸 건드리고 있었다
프론트쪽 코드에서 comment_datetime을 로드해오도록 해와서, dates로 바꿔주니 바로 잘 동작

2.
1트 : int postId = (Integer) postRequest.get("postId");
에러 : postId 값을 못읽어와서 NullPointException 발생

->

2트 int postId = Integer.parseInt(postRequest.get("postId").toString());

아직도 왜 이렇게 해야하는지는 모르겠어서, 질문 남기려고 한다

3.
https://velog.io/@qoalstn44/%ED%8C%80-%ED%94%84%EB%A1%9C%EC%A0%9D%ED%8A%B8-repository-%EC%9E%90%EC%8B%A0-git-repository%EC%97%90-%EB%B3%B5%EC%82%AC%EA%B0%80%EC%A0%B8%EC%98%A4%EA%B8%B0%EC%98%AE%EA%B8%B0%EA%B8%B0

이 링크에서 내 레포로 TIL 옮겨오기 작업했다.편-안
### 오늘 한 일

1. 스프링부트 과제 해결

2. 헬스장

3. 알고리즘 문제 3개(이코테 DFS/BFS 실전문제 2문제 2회독, 백준 구현 1문제)

4. SQL 프로그래머스 LV3 1문제 해결


### 오늘의 회고


45 changes: 45 additions & 0 deletions July/2024-07-08.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
TIL Template

날짜: 2024-07-08

스크럼
- 학습 목표 1 : 스프링부트 CRUD 빡구현
댓글 삭제 및 수정까지 구현 완료

### 오늘의 도전 과제와 해결 방법
- 도전 과제 1: 스프링부트 CRUD

### 오늘의 이슈

1. 댓글 수정하는 부분에서 뭔가 자꾸 안돼서 디버깅하는 방법 배웠다
프론트쪽 코드 검사:
개발자도구 -> 소스 -> break point 찍고 -> 한줄씩 실행시켜 보면 친절하게 알려준다

백엔드 코드 검사:
인텔리제이 내에 있는 디버깅 기능 사용

제프 사랑합니다 ....

2. 삭제 기능 자꾸 안됐는데
스프링부트 진짜 신기한게
void deleteByPostIdAndCommentNumber(int postId, int commentNumber);
이렇게 해도 알아서 delete 쿼리문을 자동으로 만들어준다 .. 갓스프링
### 오늘 한 일

1. 스프링부트 CRUD 구현 완료! ! ! ! !

2. 헬스장

3. 드롭다운 2달만에 드디어 해결

4. 현재 인증 / 인가는 세션에 있는 userId로 모든걸 다 하고있는데 ㅎ 뭔가 잘못된 느낌?
일단 만들어두고 나중에 JWT 공부하면서 피드백하던가 해야겠다..
내가 할 수 있는건 이번주 기준으론 여기까지



### 오늘의 회고
오늘 진짜 빡집중 조졌다
근데 너무 졸려서 책상 앞에서 거의 한시간을 졸고있었음,,,,
그래서 오늘은 한시간 일찍 자야지
내일도 파이팅
23 changes: 23 additions & 0 deletions July/2024-07-09.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
TIL Template

날짜: 2024-07-09

스크럼
- 학습 목표 1 : 커뮤니티 프로젝트 전체 검토

### 오늘의 도전 과제와 해결 방법
- 도전 과제 1: 피드백 반영하기

### 오늘의 이슈

프론트엔드 사진 인식 안돼서 하루종일 열받는데 해결 못함


### 오늘 한 일

프론트엔드 사진 기능 구현


### 오늘의 회고

짜증 가득인 하루지만 ,,,,, 내일은 더 나은 하루를 보내길
23 changes: 22 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,30 @@
# til-template
### [7월 첫째주, 13주차] : 커뮤니티 프로젝트 마무리 + 모의 해커톤 진행

개념학습 :

프로젝트 : 스프링부트 CRUD 구현 완료 및 전체적인 프로젝트 점검 + 주말 해커톤 진행
<br>
([📩](https://github.com/100-hours-a-week/alan-til/blob/main/July/2024-07-08.md) ${\textsf{\color{#1e90ff}2024-07-08}}$ )
<br>
([📩](https://github.com/100-hours-a-week/alan-til/blob/main/July/2024-07-09.md) ${\textsf{\color{#1e90ff}2024-07-09}}$ )
<br>
### [7월 첫째주, 12주차] : Spring Boot 과제 진행


([📩](https://github.com/100-hours-a-week/alan-til/blob/main/July/2024-07-01.md) ${\textsf{\color{#1e90ff}2024-07-01}}$ )
<br>
([📩](https://github.com/100-hours-a-week/alan-til/blob/main/July/2024-07-02.md) ${\textsf{\color{#1e90ff}2024-07-02}}$ )
<br>
([📩](https://github.com/100-hours-a-week/alan-til/blob/main/July/2024-07-03.md) ${\textsf{\color{#1e90ff}2024-07-03}}$ )
<br>
([📩](https://github.com/100-hours-a-week/alan-til/blob/main/June/2024-07-01.md) ${\textsf{\color{#1e90ff}2024-07-01}}$ )
([📩](https://github.com/100-hours-a-week/alan-til/blob/main/July/2024-07-04.md) ${\textsf{\color{#1e90ff}2024-07-04}}$ )
<br>
([📩](https://github.com/100-hours-a-week/alan-til/blob/main/July/2024-07-05.md) ${\textsf{\color{#1e90ff}2024-07-05}}$ )
<br>
([📩](https://github.com/100-hours-a-week/alan-til/blob/main/July/2024-07-06.md) ${\textsf{\color{#1e90ff}2024-07-06}}$ )
<br>


### [6월 넷째주, 11주차] : Spring Boot / AWS , Docker
개념학습 :
Expand Down