Spring 注解
2021-02-11 07:18
标签:ring vcc val ber 使用 code other 返回值 com 作用域:类 作用域:类 配置类可以导入其它的配置类,不需要把所有的 @Configuration 放到一个类中。 Spring 注解 标签:ring vcc val ber 使用 code other 返回值 com 原文地址:https://www.cnblogs.com/develon/p/12737786.html组件注册类注解:@Component @Repository @Service @Controller
启用包扫描后,包及子包下的类如果使用了这些注解,则会被实例化到Spring容器中,作为组件,可以在其它组件中作为依赖注入。
@Component是任何Spring管理的组件或bean的通用构造型。
@Repository是持久层的构造型。
@Service是服务层的构造型。
@Controller是表示层(spring-MVC)的构造型。@Configuration
对于配置类,可以在方法上使用@Bean注解,Spring会调用该方法,将返回值作为组件。@Import
@Import(value = [Hibernate::class, Other::class]) // 导入Hibernate配置类
@Import(Hibernate::class, Other::class) // 导入Hibernate配置类
class WebConfig : WebMvcConfigurer { ... }