我是靠谱客的博主 复杂面包,最近开发中收集的这篇文章主要介绍java 排除类(自定配置的类、自定义类)前言排除自动配置@Bean排除自定义@Bean,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

前言

在实际开发中,运行测试代码时需要排除一些配置类(自动配置的类@Bean、自定义@Bean),例如:

  • 排除自动配置@Bean:@SpringBootApplication(exclude = {自动配置类名.class})
  • 排除自定义@Bean:@ComponentScan(excludeFilters={@ComponentScan.Filter(type=FilterType.ANNOTATION, value= {自定义类名.class})})

排除自动配置@Bean

@SpringBootApplication(exclude = {ShiroWebAutoConfiguration.class, ShiroWebFilterConfiguration.class,
ShiroAutoConfiguration.class, ShiroAnnotationProcessorAutoConfiguration.class,
ShiroBeanAutoConfiguration.class, RestTemplateAutoConfiguration.class,
HttpMessageConvertersAutoConfiguration.class, JacksonAutoConfiguration.class,
RabbitAutoConfiguration.class

排除自定义@Bean

@ComponentScan(excludeFilters = @ComponentScan.Filter(type = FilterType.ASSIGNABLE_TYPE, value = {WarningMessageListener.class}))

最后

以上就是复杂面包为你收集整理的java 排除类(自定配置的类、自定义类)前言排除自动配置@Bean排除自定义@Bean的全部内容,希望文章能够帮你解决java 排除类(自定配置的类、自定义类)前言排除自动配置@Bean排除自定义@Bean所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(55)

评论列表共有 0 条评论

立即
投稿
返回
顶部