Skip to content

Java Annotation ์ •๋ฆฌ

Minjae Lee edited this page Apr 16, 2024 · 9 revisions

Common Java Annotation

Annotation Description
@Component
@Bean
@Autowired
@AllArgsConstructor
@RequiredArgsConstructor
@NoArgsConstructor

Entity File Java Annotation

Annotation Description
@Entity
@Getter
@Id
@GeneratedValue
@Enumerated

Controller File Java Annotation

Annotation Description
@Controller
@RestController
@RequestMapping
@RequestBody
@PathVariable

Service File Java Annotation

Annotation Description
@Service
@Builder
@Transactional