mybatis @EnableConfigurationProperties(MyTenantConfigProperties.class)
时间: 2023-10-15 16:28:04 浏览: 81
@EnableConfigurationProperties注解用于启用@ConfigurationProperties注解的类。在这个例子中,@EnableConfigurationProperties(MyTenantConfigProperties.class)将启用MyTenantConfigProperties类上的@ConfigurationProperties注解。
@ConfigurationProperties注解用于将配置文件中的属性映射到一个类上。例如,如果有一个配置文件中的属性名为"mytenant.name",可以使用@ConfigurationProperties将其映射到一个名为MyTenantConfigProperties的类的属性上。
@EnableConfigurationProperties注解告诉Spring Boot要启用@ConfigurationProperties注解的类,并且可以通过@Autowired或其他方式注入到其他组件中使用。
总而言之,@EnableConfigurationProperties(MyTenantConfigProperties.class)用于启用MyTenantConfigProperties类上的@ConfigurationProperties注解,以便将配置文件中的属性映射到该类的属性上,并使其可在应用程序中使用。
阅读全文