We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
도메인 계층과 ORM 엔티티를 분리할 만큼 규모가 크지 않음.
따라서,
@Entity
@Column
@InjectRepository
The text was updated successfully, but these errors were encountered:
트랜잭션 적용을 위해 custom repository를 적용해야 할 필요성이 있을 것으로 보임. 이 경우 도메인에 정의된 모델에 DB 관련 내용이 많이 섞이게 돼서, 과한 책임이 생길 것 같음.
따라서 엔티티와 도메인 모델을 별도로 정의하고, 이 사이 매퍼도 정의해야 할 것으로 보임.
Sorry, something went wrong.
굳이 @Transactional을 사용해야 할까? 생각해보면, 규모가 그리 크진 않아서 아직까지는 굳이라는 느낌이 조금 있는 거 같음. 따라서 기존 안대로 진행하기로 결정.
@Transactional
Coalery
No branches or pull requests
도메인 계층과 ORM 엔티티를 분리할 만큼 규모가 크지 않음.
따라서,
@Entity
데코레이터 및@Column
데코레이터 등)도 같이 정의@InjectRepository
로 주입 받도록 수정The text was updated successfully, but these errors were encountered: