Bean 概念談
若開發程式碼 , 底層用public int size , 我之後有修改或更新 , 會破壞向後間容性 . 但若有形成方法 , 在方法裡面做更新 , 就不會影響向後間容性 , 這就是Bean的概念
public int size ;
private int size;
public int getSize() { return size; }
@Bean
@Bean annotation tells Spring that a method annotated with @Bean will return an object that should be registered as a bean in the Spring application context.
只要是從Spring Container 形成的物件 , 都叫做Bean , 這些Bean 通常會搭配資料屬性(Meta Data)