일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- JPA스터디
- Axon framework
- 플러터 개발
- 자바공부
- 스프링
- 플러터 공부
- 코테준비
- DDD
- nestjs
- JPA예제
- 알고리즘공부
- nestjs공부
- JPA공부
- 기술면접공부
- 스프링부트
- Kafka
- K8S
- JPA
- nestjs스터디
- Flutter
- 기술공부
- 스프링공부
- 프로그래머스
- 자료구조공부
- querydsl
- 스프링부트공부
- 카프카
- 코테공부
- 스프링 공부
- JPA 공부
- Today
- Total
목록NestJS CRUD (4)
DevBoi
저번에는 생성을 하는 API를 간단하게 개발했는데, 이제는 수정 및 삭제에 대한 API를 생성해보자 뭐 생성만 하면 사실 수정은 껌이다. 서비스는 기존 생성과 동일하다. 바뀐 부분이라면 dto,entity 가 변경됬다. (컨트롤러) @Put('') putCorp(@Body('corp') corpReqDto :CorpReqDto){ return this.corpService.saveCorp(corpReqDto); } (Dto) import { IsNotEmpty } from "class-validator"; import { Corp } from "./entities/corp.entity"; import { ClassSerializerInterceptor } from "@nestjs/common"; impo..
단순히 nestJS 관련 API를 개발했다. 스웨거를 붙였고, 해당 관련되서, 단순히 조회해서, 리턴하는 (DTO) 로직을 구현했다. typeorm 0.3버전 부터 좀 많이 바뀌어서, 버전은 0.2.45로 변경해서 작업을 했다. 1) 컨트롤러 import { Controller, Get, Post, Body, Patch, Param, Delete, UseGuards } from '@nestjs/common'; import { CorpService } from './corp.service'; import { JwtAuthGuard } from 'src/auth/auth-guard'; import { Corp } from './entities/corp.entity'; import { ApiTags, ApiO..
Id기준으로, 해당 게시물의 정보를 return 해주는것을 만들것이다. 배열에서, 해당 게시물의 id와 받은 id가 같은것을 return 해주는 메소드를 서비스에 넣었다. getBoardById(id: string) : Board{ return this.boards.find((board) => board.id == id); } 컨트롤러도 추가해주자 @Get('/:id') getBoardById(@Param('id') id :string): Board{ return this.boardService.getBoardById(id); } 이렇게 되면, id기준으로 정보를 가져올 수 있다. 테스트를 해보자 정보를 넣고, 전체를 가져오고 그리고 특정 게시물 ID로 해당 데이터를 가져오는 것까지 완료를 했다., 한가..
일단 로컬 데이터를 기반으로 컨트롤러, 서비스를 연결해보자 Controller import { Controller, Get } from '@nestjs/common'; import { BoardsService } from './boards.service'; @Controller('boards') export class BoardsController { constructor(private boardService: BoardsService){} @Get('') getAllBoard(){ return this.boardService.getAllBoards(); } } Service import { Injectable } from '@nestjs/common'; @Injectable() export class ..