我想拥有应该通过布尔标志开关类型的功能来配置的弹簧安全性。
例如,
<bean class="org.springframework.ws.server...">
<property name="interceptors">
<list>
----> Here I would like an if condition test based on external property i.e. if true, register the interceptor, else do nothing
<ref local="wsSecurityInterceptor">
--> other interceptors like logging etc.
</list>
</property>
</bean>
这可能在 config.xml 中吗?非常感谢。