Spring Framework/Spring boot

Spring Framework/Spring boot

[SpringBoot] Spring에서 @Transactional과 try-catch 사용 시 롤백되지 않는 이유

요약내용!@Transactional과 try-catch를 같이 사용하면 예외가 발생해도 트랜잭션이 자동으로 롤백되지 않는 문제가 있습니다. 이는 트랜잭션의 롤백은 @Transactional 메서드가 예외를 던질 때만 발생하고, try-catch로 예외를 잡아버리면 트랜잭션이 정상적으로 커밋되기 때문입니다. @Transactional와 트랜잭션 처리트랜잭션 처리는 한 번에 이루어져야 하는 작업의 묶음으로 전체가 완료되거나 실패되는 처리를 의미합니다. (트랜잭션 처리에서 일부 성공은 허용되지 않음)@Transactionalpublic void test() { aService.doA(); bService.doB(); cService.doC();}doA(), doB(), doC()를 순차적으로 실행할 때,..

Spring Framework/Spring boot

[Spring] H2 In-memory 데이터베이스 설정 및 접속 방법

H2 In-Memory란For certain use cases (for example: rapid prototyping, testing, high performance operations, read-only databases), it may not be required to persist data, or persist changes to the data. This database supports the in-memory mode, where the data is not persisted.In-Memory는 데이터 영속적인 저장 및 변경을 요구하지 않는 상황에서 사용되곤 한다. 예를 들어 빠른 프로토타입 개발이나 테스트 작업에 사용된다. In some cases, only one connection to ..

Spring Framework/Spring boot

[Springboot] 스프링부트 HttpInterface 사용법 및 이해하기 - @HttpExchange, @GetExchange

공식문서에 작성된 글을 바탕으로 공부하고 정리해 보았습니다.영어로 된 공식문서에 친근해지고자 HttpInterface를 설명하는 글 중 중요 문장을 작성하면 강조하였습니다.HTTP InterfaceThe Spring Framework lets you define an HTTP service as a Java interface with @HttpExchange methods.you can pass such an interface to HttpServiceProxyFactory to create a proxy which performs requests through an HTTP Client such as RestClient or WebClient.(해당 인터페이스를 HttpServiceProxyFactor..

Spring Framework/Spring boot

[Springboot] 스프링부트 DTO enum 타입 JSON 역직렬화 하기 - @JsonProperty, @JsonCreator

Json 데이터를 자바 객체로 역직렬화할 때 발생할 수 있는 문제가 있습니다.1. Snake case를 Camel Case 케이스로 받으려고 할 때2. Enum type으로 역직렬화될 때 전달받은 값이 설정된 enum 값과 다른 경우 @JsonPropertyRequest JSON{ "my_name": "foobar"} Entitypublic class Student { private String myName;} DTOpublic class StudnetDTO { @JsonProperty("my_name") private String myName;}my_name → myName으로 치환해주어 값을 제대로 받습니다.@JsonProperty("value") : value로 설정한 값을 myName으로 받습니다..

kylo
'Spring Framework/Spring boot' 카테고리의 글 목록 (5 Page)