XML アプリケーションコンテキストで定義されている不正なスキーマの Bean を報告します。
<beans ... xmlns:util="https://www.springframework.org/schema/util">
<bean class="MyBean" id="myBean"/>
<bean class="ErrTypeBean" id="errTypeBean"/>
<util:list list-class="java.lang.String"/> // "クラスは 'java.util.List' の継承でなければなりません" が報告されます
<util:set value-type="MyBean">
<ref bean="fooBean"/>
<ref bean="errTypeBean"/> // "'MyBean' 型のコレクションでは追加できません" が報告されます
</util:set>
</beans>