ブールフラグスイッチのオン/オフの種類の機能を介して構成可能なスプリングセキュリティが必要です。
例えば、
<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で可能ですか?どうもありがとう。