spring

    TIL / 항해99 12기 37일차_230214_Tue

    Spring 숙련 주차 Lv2 완료 게시글 CRUD + jwt 회원가입 & 로그인 게시글 작성 게시글 전체 목록 조회 게시글 선택 조회 게시글 수정 게시글 삭제 환경설정 buile.grade(dependencies) dependencies { implementation 'org.springframework.boot:spring-boot-starter-data-jpa' implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' implementation 'org.springframework.boot:spring-boot-starter-web' compileOnly 'org.projectlombok:lombok' runtimeOnly 'c..

    TIL / 항해99 12기 36일차_230213_Mon

    Spring 숙련 주차 Lv2 하기 요구사항에 맞춰 ERD 및 API 명세서 작성 후 코드 구현 중~! API 명세서를 티스토리 블로그 표로 그렸더니 이상하게 출력된다. 그래서 알아보니 API 명세 작성 툴로 Excel Swagger gitbook Postman 대표적 4가지를 사용한다는데 깃북을 한 번 사용해봐야겠다. ERD는 아래 링크 사용하면 편하게 작성이 가능하다. https://www.erdcloud.com/ ERDCloud Draw ERD with your team members. All states are shared in real time. And it's FREE. Database modeling tool. www.erdcloud.com 요구사항 전체 게시글 목록 조회 API 제목, 작성..

    Spring Security

    Spring Security Spring 기반의 어플리케이션 인증, 권한, 인가 등의 보안을 담당하는 스프링 하위 프레임워크 스프링 서버에 필요한 인증 및 인가를 위해 많은 기능을 제공 '인증'과 '권한'에 대한 부분을 Filter 흐름에 따라 처리 보안과 관련해 체계적으로 많은 옵션을 제공해주기 때문에 개발자 입장에서 일일이 보완관련 로직을 작성하지 않아도 되는 장점이 존재 Spring Security Documentation Hello Spring Security :: Spring Security You can now run the Spring Boot application by using the Maven Plugin’s run goal. The following example shows how t..