본문 바로가기
반응형

개발148

[JPA] INSERT , UPDATE 하기(Save , SaveAll) JPA 에서 INSERT 와 UPDATE 는Save() 함수로 동작한다  Save() - INSERT 하기@Repositorypublic interface BoardRepository extends JpaRepository {} JpaRepository 를 상속받는다 에서 BoardVo 는 Entity 를 설정한 class 이며, Long 은 PK 컬럼의 데이터 타입이다  @RestController@RequestMapping("/api/*")public class BoardController { @Autowired private BoardRepository boardRepository; @PostMapping("/boardSave") public void boardSave(.. 2024. 11. 11.
[JPA] SELECT 하기(findBy , @Query , @Param , where , and , if test) https://docs.spring.io/spring-data/jpa/reference/jpa/query-methods.html#jpa.query.spel-expressions JPA Query Methods :: Spring Data JPAAs of Spring Data JPA release 1.4, we support the usage of restricted SpEL template expressions in manually defined queries that are defined with @Query. Upon the query being run, these expressions are evaluated against a predefined set of variables. Sprindocs.sp.. 2024. 11. 10.
[SpringBoot] React + TypeScript + JPA 프로젝트 (7) - 게시판 만들기(글 작성) 이전글https://greed-yb.tistory.com/309 [SpringBoot] React + TypeScript + JPA 프로젝트 (6) - 게시판 만들기(페이징 처리)이전글https://greed-yb.tistory.com/308 [SpringBoot] React + TypeScript + JPA 프로젝트 (5) - 게시판 만들기(목록)이전글https://greed-yb.tistory.com/307 [SpringBoot] React + TypeScript + JPA 프로젝트 (4) - 회원가입, 로그인 하greed-yb.tistory.com    board.tsx......... 게시판 목록 글 작성 .. 2024. 11. 8.
[SpringBoot] React + TypeScript + JPA 프로젝트 (6) - 게시판 만들기(페이징 처리) 이전글https://greed-yb.tistory.com/308 [SpringBoot] React + TypeScript + JPA 프로젝트 (5) - 게시판 만들기(목록)이전글https://greed-yb.tistory.com/307 [SpringBoot] React + TypeScript + JPA 프로젝트 (4) - 회원가입, 로그인 하기이전글https://greed-yb.tistory.com/305 [SpringBoot] React + TypeScript + JPA 프로젝트 (3) - SpringSecurity 적용이greed-yb.tistory.com   pagination.tsximport {useEffect, useState} from "react";import styled from "sty.. 2024. 11. 7.
[SpringBoot] React + TypeScript + JPA 프로젝트 (5) - 게시판 만들기(목록) 이전글https://greed-yb.tistory.com/307 [SpringBoot] React + TypeScript + JPA 프로젝트 (4) - 회원가입, 로그인 하기이전글https://greed-yb.tistory.com/305 [SpringBoot] React + TypeScript + JPA 프로젝트 (3) - SpringSecurity 적용이전글https://greed-yb.tistory.com/304 [SpringBoot] React + TypeScript + JPA 프로젝트 (2) - Bootstrap 적용이전글https://grgreed-yb.tistory.com        게시판 목록 페이지이전글과 마찬가지로Bootstrap 에 있던 tables-data.html 을 board.t.. 2024. 11. 4.
[SpringBoot] React + TypeScript + JPA 프로젝트 (4) - 회원가입, 로그인 하기 이전글https://greed-yb.tistory.com/305 [SpringBoot] React + TypeScript + JPA 프로젝트 (3) - SpringSecurity 적용이전글https://greed-yb.tistory.com/304 [SpringBoot] React + TypeScript + JPA 프로젝트 (2) - Bootstrap 적용이전글https://greed-yb.tistory.com/303 [SpringBoot] React + TypeScript + JPA 프로젝트 (1) - 생성Java 17GradleSprinb Boot 3.3.4Sprigreed-yb.tistory.com    application.properties# 쿼리문을 보여준다spring.jpa.show-sql=t.. 2024. 11. 1.
반응형