标签:inject ice conf 展现 角色 control spring 使用 autowire
声明Bean的注解:
@Component组件,没有明确的角色。
@Service在业务逻辑层(service层)使用。
@Repository在数据访问层(dao层)使用。
@Controller在展现层(MVC-->SpringMVC)使用
注入Bean的注解,一般情况下通用
@Autowired:Spring提供的注解
@Inject:JSR-330提供的注解
@Resource:JSR-250提供的注解。
---------------------------------------------
@Configuration:声明当前类是一个配置类,相当于一个Spring配置的xml文件。使用@Configuration注解表明当前类是一个配置类,这意味着这个类里可能有0个或者多个@Bean注解。
@Bean 注解在方法上,声明当前方法的返回值为一个Bean。
标签:inject ice conf 展现 角色 control spring 使用 autowire
原文地址:https://www.cnblogs.com/vincentren/p/9368969.html