일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Application Argument
- Spring Security
- Application Runner
- cors
- 알고리즘
- application.properties
- JsonSerializer
- 스프링 부트
- AuthenticationPrincipal
- webjar
- @Profile
- 다익스트라
- 백트래킹
- OAuth2
- 백준
- 스프링부트
- rest api
- Application Event
- 브루트포스
- 리소스 서버
- EnableAutoConfiguration
- HttpMessageConverters
- HATEOAS
- 백기선
- JPA
- 외부설정
- @ConfigurationProperties
- 정적 리소스
- 리소스핸들러
- WebApplication Type
- Today
- Total
목록전체 글 (114)
아카이브
엔티티의 일부 데이터만 가져오기 인터페이스 기반 Projection Nested 프로젝션 가능 Closed 프로젝션 일부만 가져오기 쿼리를 최적화할 수 있다. 가져오려는 애트리뷰트가 뭔지 알고 있으니까 Java 8의 디폴트 메서드를 사용해서 연산을 할 수 있다 Open 프로젝션 전부 다 가져와서 가공하기 @Value(SpEL)을 사용해서 연산할 수 있다. 스프링 빈의 메서드 호출도 가능 쿼리 최적화를 할 수 없다. SpEL을 엔티티 대상으로 사용하기 때문에 클래스 기반 Projection DTO Lombok @Value로 코드 줄일 수 있음 다이내믹 Projection 프로젝션용 메서드 하나만 정의하고, 실제 프로젝션 타입은 파라미터로 전달하기 List findByPost_Id(Long id, Class..
쿼리 메서드마다 연관 관계의 Fetch 모드를 설정할 수 있습니다. 경우에 따라 다른 Fetch 모드가 필요할때 사용한다. @NamedEntityGraph @Entity에서 재사용할 여러 엔티티 그룹을 정의할 때 사용 @NamedEntityGraph를 여러개 정의할 수도 있음 Comment Entity 클래스 @NamedEntityGraph(name = "Comment.post", attributeNodes = @NamedAttributeNode("post")) @Entity @Getter @Setter public class Comment { @Id @GeneratedValue private Long id; private String comment; /* * ManyToOne에서 fetch defaul..
쿼리 생성하기 find... count... delete... 흠.. update는 어떻게 하지? Update 또는 Delete 쿼리 직접 정의하기 @Modifying @Query (추천하지 않습니다) @Modifying(clearAutomatically = true, flushAutomatically = true) // flush -> update query -> PersistentContext를 clear -> DB에서 가져온다(context를 비워줘서 캐시에 없으니까) @Query("UPDATE Post p Set p.title = ?1 WHERE p.id = ?2") int updateTitle(String hibernate, Long id); 테스트 코드 /** * 한 @Transactional..