Mongoosej.Blog.Software.Programming.Java.Framework.Bladex.Detial


spring.factories

在SpringApplication初始化阶段,扫描bladex依赖的基础jar包所得到的spring.factories大改内容如下:

数据通过反射调用org.springframework.core.io.support.SpringFactoriesLoader.loadSpringFactories获取。

  1. {
  2. "org.springframework.beans.BeanInfoFactory":[
  3. "org.springframework.beans.ExtendedBeanInfoFactory"
  4. ],
  5. "org.springframework.boot.SpringApplicationRunListener":[
  6. "org.springframework.boot.context.event.EventPublishingRunListener"
  7. ],
  8. "org.springframework.boot.SpringBootExceptionReporter":[
  9. "org.springframework.boot.diagnostics.FailureAnalyzers"
  10. ],
  11. "org.springframework.boot.actuate.autoconfigure.web.ManagementContextConfiguration":[
  12. "org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration",
  13. "org.springframework.boot.actuate.autoconfigure.endpoint.web.reactive.WebFluxEndpointManagementContextConfiguration",
  14. "org.springframework.boot.actuate.autoconfigure.endpoint.web.servlet.WebMvcEndpointManagementContextConfiguration",
  15. "org.springframework.boot.actuate.autoconfigure.endpoint.web.jersey.JerseyWebEndpointManagementContextConfiguration",
  16. "org.springframework.boot.actuate.autoconfigure.security.servlet.SecurityRequestMatchersManagementContextConfiguration",
  17. "org.springframework.boot.actuate.autoconfigure.web.jersey.JerseySameManagementContextConfiguration",
  18. "org.springframework.boot.actuate.autoconfigure.web.jersey.JerseyChildManagementContextConfiguration",
  19. "org.springframework.boot.actuate.autoconfigure.web.reactive.ReactiveManagementChildContextConfiguration",
  20. "org.springframework.boot.actuate.autoconfigure.web.servlet.ServletManagementChildContextConfiguration",
  21. "org.springframework.boot.actuate.autoconfigure.web.servlet.WebMvcEndpointChildContextConfiguration"
  22. ],
  23. "org.springframework.boot.autoconfigure.AutoConfigurationImportFilter":[
  24. "org.springframework.boot.autoconfigure.condition.OnBeanCondition",
  25. "org.springframework.boot.autoconfigure.condition.OnClassCondition",
  26. "org.springframework.boot.autoconfigure.condition.OnWebApplicationCondition"
  27. ],
  28. "org.springframework.boot.autoconfigure.AutoConfigurationImportListener":[
  29. "org.springframework.boot.autoconfigure.condition.ConditionEvaluationReportAutoConfigurationImportListener"
  30. ],
  31. "org.springframework.boot.autoconfigure.EnableAutoConfiguration":[
  32. "com.baomidou.mybatisplus.autoconfigure.MybatisPlusLanguageDriverAutoConfiguration",
  33. "com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration",
  34. "org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration",
  35. "org.springframework.boot.autoconfigure.aop.AopAutoConfiguration",
  36. "org.springframework.boot.autoconfigure.amqp.RabbitAutoConfiguration",
  37. "org.springframework.boot.autoconfigure.batch.BatchAutoConfiguration",
  38. "org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration",
  39. "org.springframework.boot.autoconfigure.cassandra.CassandraAutoConfiguration",
  40. "org.springframework.boot.autoconfigure.cloud.CloudServiceConnectorsAutoConfiguration",
  41. "org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration",
  42. "org.springframework.boot.autoconfigure.context.MessageSourceAutoConfiguration",
  43. "org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration",
  44. "org.springframework.boot.autoconfigure.couchbase.CouchbaseAutoConfiguration",
  45. "org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration",
  46. "org.springframework.boot.autoconfigure.data.cassandra.CassandraDataAutoConfiguration",
  47. "org.springframework.boot.autoconfigure.data.cassandra.CassandraReactiveDataAutoConfiguration",
  48. "org.springframework.boot.autoconfigure.data.cassandra.CassandraReactiveRepositoriesAutoConfiguration",
  49. "org.springframework.boot.autoconfigure.data.cassandra.CassandraRepositoriesAutoConfiguration",
  50. "org.springframework.boot.autoconfigure.data.couchbase.CouchbaseDataAutoConfiguration",
  51. "org.springframework.boot.autoconfigure.data.couchbase.CouchbaseReactiveDataAutoConfiguration",
  52. "org.springframework.boot.autoconfigure.data.couchbase.CouchbaseReactiveRepositoriesAutoConfiguration",
  53. "org.springframework.boot.autoconfigure.data.couchbase.CouchbaseRepositoriesAutoConfiguration",
  54. "org.springframework.boot.autoconfigure.data.elasticsearch.ElasticsearchAutoConfiguration",
  55. "org.springframework.boot.autoconfigure.data.elasticsearch.ElasticsearchDataAutoConfiguration",
  56. "org.springframework.boot.autoconfigure.data.elasticsearch.ElasticsearchRepositoriesAutoConfiguration",
  57. "org.springframework.boot.autoconfigure.data.jdbc.JdbcRepositoriesAutoConfiguration",
  58. "org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration",
  59. "org.springframework.boot.autoconfigure.data.ldap.LdapRepositoriesAutoConfiguration",
  60. "org.springframework.boot.autoconfigure.data.mongo.MongoDataAutoConfiguration",
  61. "org.springframework.boot.autoconfigure.data.mongo.MongoReactiveDataAutoConfiguration",
  62. "org.springframework.boot.autoconfigure.data.mongo.MongoReactiveRepositoriesAutoConfiguration",
  63. "org.springframework.boot.autoconfigure.data.mongo.MongoRepositoriesAutoConfiguration",
  64. "org.springframework.boot.autoconfigure.data.neo4j.Neo4jDataAutoConfiguration",
  65. "org.springframework.boot.autoconfigure.data.neo4j.Neo4jRepositoriesAutoConfiguration",
  66. "org.springframework.boot.autoconfigure.data.solr.SolrRepositoriesAutoConfiguration",
  67. "org.springframework.boot.autoconfigure.data.redis.RedisAutoConfiguration",
  68. "org.springframework.boot.autoconfigure.data.redis.RedisReactiveAutoConfiguration",
  69. "org.springframework.boot.autoconfigure.data.redis.RedisRepositoriesAutoConfiguration",
  70. "org.springframework.boot.autoconfigure.data.rest.RepositoryRestMvcAutoConfiguration",
  71. "org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration",
  72. "org.springframework.boot.autoconfigure.elasticsearch.jest.JestAutoConfiguration",
  73. "org.springframework.boot.autoconfigure.elasticsearch.rest.RestClientAutoConfiguration",
  74. "org.springframework.boot.autoconfigure.flyway.FlywayAutoConfiguration",
  75. "org.springframework.boot.autoconfigure.freemarker.FreeMarkerAutoConfiguration",
  76. "org.springframework.boot.autoconfigure.gson.GsonAutoConfiguration",
  77. "org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration",
  78. "org.springframework.boot.autoconfigure.hateoas.HypermediaAutoConfiguration",
  79. "org.springframework.boot.autoconfigure.hazelcast.HazelcastAutoConfiguration",
  80. "org.springframework.boot.autoconfigure.hazelcast.HazelcastJpaDependencyAutoConfiguration",
  81. "org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration",
  82. "org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration",
  83. "org.springframework.boot.autoconfigure.influx.InfluxDbAutoConfiguration",
  84. "org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration",
  85. "org.springframework.boot.autoconfigure.integration.IntegrationAutoConfiguration",
  86. "org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration",
  87. "org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration",
  88. "org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration",
  89. "org.springframework.boot.autoconfigure.jdbc.JndiDataSourceAutoConfiguration",
  90. "org.springframework.boot.autoconfigure.jdbc.XADataSourceAutoConfiguration",
  91. "org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration",
  92. "org.springframework.boot.autoconfigure.jms.JmsAutoConfiguration",
  93. "org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration",
  94. "org.springframework.boot.autoconfigure.jms.JndiConnectionFactoryAutoConfiguration",
  95. "org.springframework.boot.autoconfigure.jms.activemq.ActiveMQAutoConfiguration",
  96. "org.springframework.boot.autoconfigure.jms.artemis.ArtemisAutoConfiguration",
  97. "org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateAutoConfiguration",
  98. "org.springframework.boot.autoconfigure.jersey.JerseyAutoConfiguration",
  99. "org.springframework.boot.autoconfigure.jooq.JooqAutoConfiguration",
  100. "org.springframework.boot.autoconfigure.jsonb.JsonbAutoConfiguration",
  101. "org.springframework.boot.autoconfigure.kafka.KafkaAutoConfiguration",
  102. "org.springframework.boot.autoconfigure.ldap.embedded.EmbeddedLdapAutoConfiguration",
  103. "org.springframework.boot.autoconfigure.ldap.LdapAutoConfiguration",
  104. "org.springframework.boot.autoconfigure.liquibase.LiquibaseAutoConfiguration",
  105. "org.springframework.boot.autoconfigure.mail.MailSenderAutoConfiguration",
  106. "org.springframework.boot.autoconfigure.mail.MailSenderValidatorAutoConfiguration",
  107. "org.springframework.boot.autoconfigure.mongo.embedded.EmbeddedMongoAutoConfiguration",
  108. "org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration",
  109. "org.springframework.boot.autoconfigure.mongo.MongoReactiveAutoConfiguration",
  110. "org.springframework.boot.autoconfigure.mustache.MustacheAutoConfiguration",
  111. "org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration",
  112. "org.springframework.boot.autoconfigure.quartz.QuartzAutoConfiguration",
  113. "org.springframework.boot.autoconfigure.reactor.core.ReactorCoreAutoConfiguration",
  114. "org.springframework.boot.autoconfigure.security.servlet.SecurityAutoConfiguration",
  115. "org.springframework.boot.autoconfigure.security.servlet.UserDetailsServiceAutoConfiguration",
  116. "org.springframework.boot.autoconfigure.security.servlet.SecurityFilterAutoConfiguration",
  117. "org.springframework.boot.autoconfigure.security.reactive.ReactiveSecurityAutoConfiguration",
  118. "org.springframework.boot.autoconfigure.security.reactive.ReactiveUserDetailsServiceAutoConfiguration",
  119. "org.springframework.boot.autoconfigure.sendgrid.SendGridAutoConfiguration",
  120. "org.springframework.boot.autoconfigure.session.SessionAutoConfiguration",
  121. "org.springframework.boot.autoconfigure.security.oauth2.client.servlet.OAuth2ClientAutoConfiguration",
  122. "org.springframework.boot.autoconfigure.security.oauth2.client.reactive.ReactiveOAuth2ClientAutoConfiguration",
  123. "org.springframework.boot.autoconfigure.security.oauth2.resource.servlet.OAuth2ResourceServerAutoConfiguration",
  124. "org.springframework.boot.autoconfigure.security.oauth2.resource.reactive.ReactiveOAuth2ResourceServerAutoConfiguration",
  125. "org.springframework.boot.autoconfigure.solr.SolrAutoConfiguration",
  126. "org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration",
  127. "org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration",
  128. "org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration",
  129. "org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration",
  130. "org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration",
  131. "org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration",
  132. "org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration",
  133. "org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration",
  134. "org.springframework.boot.autoconfigure.web.reactive.HttpHandlerAutoConfiguration",
  135. "org.springframework.boot.autoconfigure.web.reactive.ReactiveWebServerFactoryAutoConfiguration",
  136. "org.springframework.boot.autoconfigure.web.reactive.WebFluxAutoConfiguration",
  137. "org.springframework.boot.autoconfigure.web.reactive.error.ErrorWebFluxAutoConfiguration",
  138. "org.springframework.boot.autoconfigure.web.reactive.function.client.ClientHttpConnectorAutoConfiguration",
  139. "org.springframework.boot.autoconfigure.web.reactive.function.client.WebClientAutoConfiguration",
  140. "org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration",
  141. "org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration",
  142. "org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration",
  143. "org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration",
  144. "org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration",
  145. "org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration",
  146. "org.springframework.boot.autoconfigure.websocket.reactive.WebSocketReactiveAutoConfiguration",
  147. "org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration",
  148. "org.springframework.boot.autoconfigure.websocket.servlet.WebSocketMessagingAutoConfiguration",
  149. "org.springframework.boot.autoconfigure.webservices.WebServicesAutoConfiguration",
  150. "org.springframework.boot.autoconfigure.webservices.client.WebServiceTemplateAutoConfiguration",
  151. "com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure",
  152. "org.springframework.cloud.stream.config.ChannelBindingAutoConfiguration",
  153. "org.springframework.cloud.stream.config.BindersHealthIndicatorAutoConfiguration",
  154. "org.springframework.cloud.stream.config.ChannelsEndpointAutoConfiguration",
  155. "org.springframework.cloud.stream.config.BindingsEndpointAutoConfiguration",
  156. "org.springframework.cloud.stream.config.BindingServiceConfiguration",
  157. "org.springframework.cloud.stream.function.FunctionConfiguration",
  158. "org.springframework.cloud.function.context.config.ContextFunctionCatalogAutoConfiguration",
  159. "org.springframework.cloud.openfeign.ribbon.FeignRibbonClientAutoConfiguration",
  160. "org.springframework.cloud.openfeign.FeignAutoConfiguration",
  161. "org.springframework.cloud.openfeign.encoding.FeignAcceptGzipEncodingAutoConfiguration",
  162. "org.springframework.cloud.openfeign.encoding.FeignContentGzipEncodingAutoConfiguration",
  163. "org.springframework.cloud.client.CommonsClientAutoConfiguration",
  164. "org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClientAutoConfiguration",
  165. "org.springframework.cloud.client.discovery.noop.NoopDiscoveryClientAutoConfiguration",
  166. "org.springframework.cloud.client.discovery.simple.SimpleDiscoveryClientAutoConfiguration",
  167. "org.springframework.cloud.client.hypermedia.CloudHypermediaAutoConfiguration",
  168. "org.springframework.cloud.client.loadbalancer.AsyncLoadBalancerAutoConfiguration",
  169. "org.springframework.cloud.client.loadbalancer.LoadBalancerAutoConfiguration",
  170. "org.springframework.cloud.client.loadbalancer.reactive.ReactorLoadBalancerClientAutoConfiguration",
  171. "org.springframework.cloud.client.loadbalancer.reactive.ReactiveLoadBalancerAutoConfiguration",
  172. "org.springframework.cloud.client.serviceregistry.ServiceRegistryAutoConfiguration",
  173. "org.springframework.cloud.commons.httpclient.HttpClientConfiguration",
  174. "org.springframework.cloud.commons.util.UtilAutoConfiguration",
  175. "org.springframework.cloud.configuration.CompatibilityVerifierAutoConfiguration",
  176. "org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationAutoConfiguration",
  177. "org.springframework.cloud.netflix.hystrix.HystrixAutoConfiguration",
  178. "org.springframework.cloud.netflix.hystrix.security.HystrixSecurityAutoConfiguration",
  179. "org.springframework.cloud.netflix.ribbon.RibbonAutoConfiguration",
  180. "org.springframework.cloud.netflix.archaius.ArchaiusAutoConfiguration",
  181. "org.springframework.boot.actuate.autoconfigure.amqp.RabbitHealthIndicatorAutoConfiguration",
  182. "org.springframework.boot.actuate.autoconfigure.audit.AuditAutoConfiguration",
  183. "org.springframework.boot.actuate.autoconfigure.audit.AuditEventsEndpointAutoConfiguration",
  184. "org.springframework.boot.actuate.autoconfigure.beans.BeansEndpointAutoConfiguration",
  185. "org.springframework.boot.actuate.autoconfigure.cache.CachesEndpointAutoConfiguration",
  186. "org.springframework.boot.actuate.autoconfigure.cassandra.CassandraHealthIndicatorAutoConfiguration",
  187. "org.springframework.boot.actuate.autoconfigure.cassandra.CassandraReactiveHealthIndicatorAutoConfiguration",
  188. "org.springframework.boot.actuate.autoconfigure.cloudfoundry.servlet.CloudFoundryActuatorAutoConfiguration",
  189. "org.springframework.boot.actuate.autoconfigure.cloudfoundry.reactive.ReactiveCloudFoundryActuatorAutoConfiguration",
  190. "org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpointAutoConfiguration",
  191. "org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration",
  192. "org.springframework.boot.actuate.autoconfigure.context.ShutdownEndpointAutoConfiguration",
  193. "org.springframework.boot.actuate.autoconfigure.couchbase.CouchbaseHealthIndicatorAutoConfiguration",
  194. "org.springframework.boot.actuate.autoconfigure.couchbase.CouchbaseReactiveHealthIndicatorAutoConfiguration",
  195. "org.springframework.boot.actuate.autoconfigure.elasticsearch.ElasticSearchClientHealthIndicatorAutoConfiguration",
  196. "org.springframework.boot.actuate.autoconfigure.elasticsearch.ElasticSearchJestHealthIndicatorAutoConfiguration",
  197. "org.springframework.boot.actuate.autoconfigure.elasticsearch.ElasticSearchRestHealthIndicatorAutoConfiguration",
  198. "org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration",
  199. "org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration",
  200. "org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration",
  201. "org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration",
  202. "org.springframework.boot.actuate.autoconfigure.flyway.FlywayEndpointAutoConfiguration",
  203. "org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration",
  204. "org.springframework.boot.actuate.autoconfigure.health.HealthIndicatorAutoConfiguration",
  205. "org.springframework.boot.actuate.autoconfigure.influx.InfluxDbHealthIndicatorAutoConfiguration",
  206. "org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration",
  207. "org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration",
  208. "org.springframework.boot.actuate.autoconfigure.integration.IntegrationGraphEndpointAutoConfiguration",
  209. "org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorAutoConfiguration",
  210. "org.springframework.boot.actuate.autoconfigure.jms.JmsHealthIndicatorAutoConfiguration",
  211. "org.springframework.boot.actuate.autoconfigure.jolokia.JolokiaEndpointAutoConfiguration",
  212. "org.springframework.boot.actuate.autoconfigure.ldap.LdapHealthIndicatorAutoConfiguration",
  213. "org.springframework.boot.actuate.autoconfigure.liquibase.LiquibaseEndpointAutoConfiguration",
  214. "org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration",
  215. "org.springframework.boot.actuate.autoconfigure.logging.LoggersEndpointAutoConfiguration",
  216. "org.springframework.boot.actuate.autoconfigure.mail.MailHealthIndicatorAutoConfiguration",
  217. "org.springframework.boot.actuate.autoconfigure.management.HeapDumpWebEndpointAutoConfiguration",
  218. "org.springframework.boot.actuate.autoconfigure.management.ThreadDumpEndpointAutoConfiguration",
  219. "org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration",
  220. "org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration",
  221. "org.springframework.boot.actuate.autoconfigure.metrics.KafkaMetricsAutoConfiguration",
  222. "org.springframework.boot.actuate.autoconfigure.metrics.Log4J2MetricsAutoConfiguration",
  223. "org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration",
  224. "org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration",
  225. "org.springframework.boot.actuate.autoconfigure.metrics.MetricsEndpointAutoConfiguration",
  226. "org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration",
  227. "org.springframework.boot.actuate.autoconfigure.metrics.amqp.RabbitMetricsAutoConfiguration",
  228. "org.springframework.boot.actuate.autoconfigure.metrics.cache.CacheMetricsAutoConfiguration",
  229. "org.springframework.boot.actuate.autoconfigure.metrics.export.appoptics.AppOpticsMetricsExportAutoConfiguration",
  230. "org.springframework.boot.actuate.autoconfigure.metrics.export.atlas.AtlasMetricsExportAutoConfiguration",
  231. "org.springframework.boot.actuate.autoconfigure.metrics.export.datadog.DatadogMetricsExportAutoConfiguration",
  232. "org.springframework.boot.actuate.autoconfigure.metrics.export.dynatrace.DynatraceMetricsExportAutoConfiguration",
  233. "org.springframework.boot.actuate.autoconfigure.metrics.export.elastic.ElasticMetricsExportAutoConfiguration",
  234. "org.springframework.boot.actuate.autoconfigure.metrics.export.ganglia.GangliaMetricsExportAutoConfiguration",
  235. "org.springframework.boot.actuate.autoconfigure.metrics.export.graphite.GraphiteMetricsExportAutoConfiguration",
  236. "org.springframework.boot.actuate.autoconfigure.metrics.export.humio.HumioMetricsExportAutoConfiguration",
  237. "org.springframework.boot.actuate.autoconfigure.metrics.export.influx.InfluxMetricsExportAutoConfiguration",
  238. "org.springframework.boot.actuate.autoconfigure.metrics.export.jmx.JmxMetricsExportAutoConfiguration",
  239. "org.springframework.boot.actuate.autoconfigure.metrics.export.kairos.KairosMetricsExportAutoConfiguration",
  240. "org.springframework.boot.actuate.autoconfigure.metrics.export.newrelic.NewRelicMetricsExportAutoConfiguration",
  241. "org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusMetricsExportAutoConfiguration",
  242. "org.springframework.boot.actuate.autoconfigure.metrics.export.signalfx.SignalFxMetricsExportAutoConfiguration",
  243. "org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleMetricsExportAutoConfiguration",
  244. "org.springframework.boot.actuate.autoconfigure.metrics.export.statsd.StatsdMetricsExportAutoConfiguration",
  245. "org.springframework.boot.actuate.autoconfigure.metrics.export.wavefront.WavefrontMetricsExportAutoConfiguration",
  246. "org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration",
  247. "org.springframework.boot.actuate.autoconfigure.metrics.jersey.JerseyServerMetricsAutoConfiguration",
  248. "org.springframework.boot.actuate.autoconfigure.metrics.orm.jpa.HibernateMetricsAutoConfiguration",
  249. "org.springframework.boot.actuate.autoconfigure.metrics.web.client.HttpClientMetricsAutoConfiguration",
  250. "org.springframework.boot.actuate.autoconfigure.metrics.web.jetty.JettyMetricsAutoConfiguration",
  251. "org.springframework.boot.actuate.autoconfigure.metrics.web.reactive.WebFluxMetricsAutoConfiguration",
  252. "org.springframework.boot.actuate.autoconfigure.metrics.web.servlet.WebMvcMetricsAutoConfiguration",
  253. "org.springframework.boot.actuate.autoconfigure.metrics.web.tomcat.TomcatMetricsAutoConfiguration",
  254. "org.springframework.boot.actuate.autoconfigure.mongo.MongoHealthIndicatorAutoConfiguration",
  255. "org.springframework.boot.actuate.autoconfigure.mongo.MongoReactiveHealthIndicatorAutoConfiguration",
  256. "org.springframework.boot.actuate.autoconfigure.neo4j.Neo4jHealthIndicatorAutoConfiguration",
  257. "org.springframework.boot.actuate.autoconfigure.redis.RedisHealthIndicatorAutoConfiguration",
  258. "org.springframework.boot.actuate.autoconfigure.redis.RedisReactiveHealthIndicatorAutoConfiguration",
  259. "org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksEndpointAutoConfiguration",
  260. "org.springframework.boot.actuate.autoconfigure.security.reactive.ReactiveManagementWebSecurityAutoConfiguration",
  261. "org.springframework.boot.actuate.autoconfigure.security.servlet.ManagementWebSecurityAutoConfiguration",
  262. "org.springframework.boot.actuate.autoconfigure.session.SessionsEndpointAutoConfiguration",
  263. "org.springframework.boot.actuate.autoconfigure.solr.SolrHealthIndicatorAutoConfiguration",
  264. "org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorAutoConfiguration",
  265. "org.springframework.boot.actuate.autoconfigure.trace.http.HttpTraceAutoConfiguration",
  266. "org.springframework.boot.actuate.autoconfigure.trace.http.HttpTraceEndpointAutoConfiguration",
  267. "org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration",
  268. "org.springframework.boot.actuate.autoconfigure.web.reactive.ReactiveManagementContextAutoConfiguration",
  269. "org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration",
  270. "org.springframework.boot.actuate.autoconfigure.web.servlet.ServletManagementContextAutoConfiguration",
  271. "de.codecentric.boot.admin.client.config.SpringBootAdminClientAutoConfiguration",
  272. "de.codecentric.boot.admin.client.config.SpringBootAdminClientCloudFoundryAutoConfiguration",
  273. "com.alibaba.cloud.nacos.discovery.NacosDiscoveryAutoConfiguration",
  274. "com.alibaba.cloud.nacos.ribbon.RibbonNacosAutoConfiguration",
  275. "com.alibaba.cloud.nacos.endpoint.NacosDiscoveryEndpointAutoConfiguration",
  276. "com.alibaba.cloud.nacos.registry.NacosServiceRegistryAutoConfiguration",
  277. "com.alibaba.cloud.nacos.discovery.NacosDiscoveryClientConfiguration",
  278. "com.alibaba.cloud.nacos.discovery.configclient.NacosConfigServerAutoConfiguration",
  279. "org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration",
  280. "org.springframework.cloud.autoconfigure.LifecycleMvcEndpointAutoConfiguration",
  281. "org.springframework.cloud.autoconfigure.RefreshAutoConfiguration",
  282. "org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration",
  283. "org.springframework.cloud.autoconfigure.WritableEnvironmentEndpointAutoConfiguration",
  284. "com.alibaba.cloud.nacos.NacosConfigAutoConfiguration",
  285. "com.alibaba.cloud.nacos.endpoint.NacosConfigEndpointAutoConfiguration",
  286. "com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration",
  287. "com.alibaba.cloud.sentinel.SentinelWebFluxAutoConfiguration",
  288. "com.alibaba.cloud.sentinel.endpoint.SentinelEndpointAutoConfiguration",
  289. "com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration",
  290. "com.alibaba.cloud.sentinel.feign.SentinelFeignAutoConfiguration",
  291. "org.redisson.spring.cache.RedissonCacheStatisticsAutoConfiguration"
  292. ],
  293. "org.springframework.boot.autoconfigure.template.TemplateAvailabilityProvider":[
  294. "org.springframework.boot.autoconfigure.freemarker.FreeMarkerTemplateAvailabilityProvider",
  295. "org.springframework.boot.autoconfigure.mustache.MustacheTemplateAvailabilityProvider",
  296. "org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateAvailabilityProvider",
  297. "org.springframework.boot.autoconfigure.thymeleaf.ThymeleafTemplateAvailabilityProvider",
  298. "org.springframework.boot.autoconfigure.web.servlet.JspTemplateAvailabilityProvider"
  299. ],
  300. "org.springframework.boot.diagnostics.FailureAnalysisReporter":[
  301. "org.springframework.boot.diagnostics.LoggingFailureAnalysisReporter"
  302. ],
  303. "org.springframework.boot.diagnostics.FailureAnalyzer":[
  304. "org.springframework.boot.autoconfigure.diagnostics.analyzer.NoSuchBeanDefinitionFailureAnalyzer",
  305. "org.springframework.boot.autoconfigure.jdbc.DataSourceBeanCreationFailureAnalyzer",
  306. "org.springframework.boot.autoconfigure.jdbc.HikariDriverConfigurationFailureAnalyzer",
  307. "org.springframework.boot.autoconfigure.session.NonUniqueSessionRepositoryFailureAnalyzer",
  308. "org.springframework.cloud.configuration.CompatibilityNotMetFailureAnalyzer",
  309. "org.springframework.boot.actuate.autoconfigure.metrics.MissingRequiredConfigurationFailureAnalyzer",
  310. "com.alibaba.cloud.nacos.diagnostics.analyzer.NacosConnectionFailureAnalyzer",
  311. "org.springframework.boot.diagnostics.analyzer.BeanCurrentlyInCreationFailureAnalyzer",
  312. "org.springframework.boot.diagnostics.analyzer.BeanDefinitionOverrideFailureAnalyzer",
  313. "org.springframework.boot.diagnostics.analyzer.BeanNotOfRequiredTypeFailureAnalyzer",
  314. "org.springframework.boot.diagnostics.analyzer.BindFailureAnalyzer",
  315. "org.springframework.boot.diagnostics.analyzer.BindValidationFailureAnalyzer",
  316. "org.springframework.boot.diagnostics.analyzer.UnboundConfigurationPropertyFailureAnalyzer",
  317. "org.springframework.boot.diagnostics.analyzer.ConnectorStartFailureAnalyzer",
  318. "org.springframework.boot.diagnostics.analyzer.NoSuchMethodFailureAnalyzer",
  319. "org.springframework.boot.diagnostics.analyzer.NoUniqueBeanDefinitionFailureAnalyzer",
  320. "org.springframework.boot.diagnostics.analyzer.PortInUseFailureAnalyzer",
  321. "org.springframework.boot.diagnostics.analyzer.ValidationExceptionFailureAnalyzer",
  322. "org.springframework.boot.diagnostics.analyzer.InvalidConfigurationPropertyNameFailureAnalyzer",
  323. "org.springframework.boot.diagnostics.analyzer.InvalidConfigurationPropertyValueFailureAnalyzer"
  324. ],
  325. "org.springframework.boot.env.EnvironmentPostProcessor":[
  326. "com.baomidou.mybatisplus.autoconfigure.SafetyEncryptProcessor",
  327. "org.springframework.cloud.client.HostInfoEnvironmentPostProcessor",
  328. "org.springframework.boot.cloud.CloudFoundryVcapEnvironmentPostProcessor",
  329. "org.springframework.boot.env.SpringApplicationJsonEnvironmentPostProcessor",
  330. "org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor"
  331. ],
  332. "org.springframework.boot.env.PropertySourceLoader":[
  333. "org.springframework.boot.env.PropertiesPropertySourceLoader",
  334. "org.springframework.boot.env.YamlPropertySourceLoader"
  335. ],
  336. "org.springframework.cloud.bootstrap.BootstrapConfiguration":[
  337. "com.alibaba.cloud.nacos.discovery.configclient.NacosDiscoveryClientConfigServiceBootstrapConfiguration",
  338. "org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration",
  339. "org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration",
  340. "org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration",
  341. "org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration",
  342. "com.alibaba.cloud.nacos.NacosConfigBootstrapConfiguration"
  343. ],
  344. "org.springframework.cloud.client.circuitbreaker.EnableCircuitBreaker":[
  345. "org.springframework.cloud.netflix.hystrix.HystrixCircuitBreakerConfiguration",
  346. "com.alibaba.cloud.sentinel.custom.SentinelCircuitBreakerConfiguration"
  347. ],
  348. "org.springframework.cloud.function.context.WrapperDetector":[
  349. "org.springframework.cloud.function.context.config.FluxWrapperDetector"
  350. ],
  351. "org.springframework.context.ApplicationContextInitializer":[
  352. "org.springframework.boot.autoconfigure.SharedMetadataReaderFactoryContextInitializer",
  353. "org.springframework.boot.autoconfigure.logging.ConditionEvaluationReportLoggingListener",
  354. "org.springframework.cloud.function.context.config.ContextFunctionCatalogInitializer",
  355. "org.springframework.boot.context.ConfigurationWarningsApplicationContextInitializer",
  356. "org.springframework.boot.context.ContextIdApplicationContextInitializer",
  357. "org.springframework.boot.context.config.DelegatingApplicationContextInitializer",
  358. "org.springframework.boot.web.context.ServerPortInfoApplicationContextInitializer"
  359. ],
  360. "org.springframework.context.ApplicationListener":[
  361. "org.springframework.boot.autoconfigure.BackgroundPreinitializer",
  362. "org.springframework.cloud.bootstrap.BootstrapApplicationListener",
  363. "org.springframework.cloud.bootstrap.LoggingSystemShutdownListener",
  364. "org.springframework.cloud.context.restart.RestartListener",
  365. "org.springframework.boot.ClearCachesApplicationListener",
  366. "org.springframework.boot.builder.ParentContextCloserApplicationListener",
  367. "org.springframework.boot.cloud.CloudFoundryVcapEnvironmentPostProcessor",
  368. "org.springframework.boot.context.FileEncodingApplicationListener",
  369. "org.springframework.boot.context.config.AnsiOutputApplicationListener",
  370. "org.springframework.boot.context.config.ConfigFileApplicationListener",
  371. "org.springframework.boot.context.config.DelegatingApplicationListener",
  372. "org.springframework.boot.context.logging.ClasspathLoggingApplicationListener",
  373. "org.springframework.boot.context.logging.LoggingApplicationListener",
  374. "org.springframework.boot.liquibase.LiquibaseServiceLocatorApplicationListener"
  375. ],
  376. "org.springframework.data.repository.core.support.RepositoryFactorySupport":[
  377. "org.springframework.data.redis.repository.support.RedisRepositoryFactory",
  378. "org.springframework.data.keyvalue.repository.support.KeyValueRepositoryFactory"
  379. ],
  380. "org.springframework.data.web.config.SpringDataJacksonModules":[
  381. "org.springframework.data.web.config.SpringDataJacksonConfiguration"
  382. ],
  383. "org.springframework.integration.config.IntegrationConfigurationInitializer":[
  384. "org.springframework.integration.config.GlobalChannelInterceptorInitializer",
  385. "org.springframework.integration.config.IntegrationConverterInitializer",
  386. "org.springframework.integration.config.IdempotentReceiverAutoProxyCreatorInitializer",
  387. "org.springframework.integration.dsl.context.DslIntegrationConfigurationInitializer",
  388. "org.springframework.integration.jmx.config.JmxIntegrationConfigurationInitializer"
  389. ]
  390. }

bladex.spring.factories.json