spring 注解

  1. @Configuration注解

该类等价 与XML中配置beans,相当于Ioc容器,它的某个方法头上如果注册了@Bean,就会作为这个Spring容器中的Bean,与xml中配置的bean意思一样。

spring 注解

  1. @Value注解

为了简化从properties里取配置,可以使用@Value, 可以properties文件中的配置值

spring 注解

  1.  @Controller, @Service, @Repository,@Component

通过这些注解的类并把这些类纳入进spring容器中管理

持久层、业务层和控制层分别采用 @Repository、@Service 和 @Controller 对分层中的类进行注释,而用 @Component 对那些比较中立的类进行注释

上一篇:C# 依赖注入与控制反转


下一篇:解决错误 git@github.com: Permission denied (publickey). fatal: Could not read from remote repository.