TIL

@Immutable

하얀잔디 2023. 6. 5. 14:29

View 목적의 Entity를 생성하는 방법

 

아래 Entity는 Read-Only가 된다.

@Entity
@Immutable ****
@Table(name = "view_entity")
@Data
@NoArgsConstructor
@AllArgsConstructor
public class entity{
	@Id
    private UUID uid;
    
    private UUID departId;
    
    private String name;
}

'TIL' 카테고리의 다른 글

http 상태코드 정리  (0) 2023.06.23
CORS  (0) 2023.06.08
브라우저에 url을 치면 일어나는 일  (0) 2023.06.02
VARCHAR vs NVARCHAR  (0) 2023.06.01
Boolean vs boolean  (0) 2023.06.01