I have some @Configuration
file in my spring project and I would like to exclude
some of them when spring is starting up. In fact, I have a property file which contains the spring start up scenarios. In some scenarios I want to exclude some Configuration file.
In XML form, we had "context:exclude-filter
" but I did not find what the equivalence is in annotation base Configuration ?
Could anyone show me the hope?