Java Bean : Classes adhering to 3 constraints :
1 : Have public default (no argument) constructors
2 : Allow access to their properties using getter and setter methods
3 : Implement java.io.Serializable
(Java Bean의 개념은 더 이상 중요하지 않다. EJB을 사용하는 사람이 많지 않기 때문.)
POJO : Plain Old Java Object 즉, 자바로 생성하는 순수한 객체( = 모든 Java 객체는 POJO)
Spring Bean : Spring이 관리하는 모든 Java 객체
- Spring uses IOC Container (Bean Factory or Application Context) to manage these objects
'Spring' 카테고리의 다른 글
MyBatis 개요 (0) | 2024.12.15 |
---|---|
RowMapper와 BeanPropertyRowMapper (1) | 2024.12.15 |
JDBC API - JDBC Template (1) | 2024.12.14 |
Spring Boot - JDBC 연결과 DataSource(MariaDB) (0) | 2024.12.14 |
Spring Container (0) | 2024.07.20 |