春: 私の context.xml には、次のものがあります。
<util:set id="someIDs"
set-class="java.util.HashSet"
value-type="java.lang.String">
<value>"W000000001"</value>
<value>"W000000003"</value>
<value>"W000000009"</value>
</util:set>
私のJava Beanでは、実装は次のとおりです。
private Set<String> someSet =
ComUtilities.uncheckedCast(getApplicationContext()
.getBean("someIDs"));
boolean found = someSet.contains("W000000009");
abobe コード ブロックの実行後、found は非常に奇妙に false です。どうして?提案/アイデアはありますか?本当にありがとう。