Rest API
@RestController
@RequestMapping()
@GetMapping()
@PostMapping()
@RequestBody
@Validated
@Valid
JPA/Hibernate
@Entity
@Id
@Column
@Column(updatable = false)
@Column(insertable = false)
@Repository
@Transactional
@Modifying
@MappedSuperclass
@EntityListeners(AuditingEntityListener.class)
@CreatedDate
@CreatedBy
@LastModifiedDate
@LastModifiedBy
Lombok
@Getter
@Setter
@ToString
@AllArgsConstructor
@NoArgsConstructor
@Data