인프런 커뮤니티 질문&답변

parkht님의 프로필 이미지
parkht

작성한 질문수

스프링과 JPA 기반 웹 애플리케이션 개발

프로필 수정 처리

updateProfile에 영속성컨텍스트

작성

·

208

0

안녕하세요. 

updateProfile 메소드 내에 account 객체를 persistence로 만드는 방법과 관련해서 아래 소스와 같이 작성했는데요.

제가 생각한 것은 Id로 조회를 한 객체는 Persistence 상태이고, 값을 수정하면 update가 될것이라고 생각해서 작성했는데 update가 되지 않아 원인을 여쭤보고자 질문남깁니다.

답변 부탁드립니다. 감사합니다.

public void updateProfile(Account account, Profile profile) {
	Optional<Account> byId = accountRepository.findById(account.getId());
	Account reAccount = byId.get();
	reAccount.setBio(profile.getBio());
	reAccount.setUrl(profile.getUrl());
	reAccount.setOccupation(profile.getOccupation());
	reAccount.setLocation(profile.getLocation());
}

답변 2

0

parkht님의 프로필 이미지
parkht
질문자

안녕하세요. @Transactional을 적용하니까 select 후에 update되는 것을 확인했습니다. 답변 감사합니다.

0

백기선님의 프로필 이미지
백기선
지식공유자

이 코드만 봐서는 알기가 어려운데요. 저 코드에 @Transactional이 적용되어 있나요?

parkht님의 프로필 이미지
parkht

작성한 질문수

질문하기