Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は春が初めてで、オンラインの春のリファレンスを読んでいます。コンストラクター インジェクション (CI) を使用する利点の 1 つは、CI が不変であることです。これは、変更できないことを意味します。CIが不変性を促進する方法を示す簡単な例を教えてください。ありがとう
CIのおかげで、これは不変のBeanです
class B1 { private final int x; B1(int x) { this.x = x; } }
context.xml
<bean id="b1" class="test.B1"> <constructor-arg value="1"/> </bean>