Spring @bean和@component注解区别
本文打算介绍几个不太容易说出其区别,或者用途的 spring 注解,比如 @component 与 @bean 的比较,@controlleradvice 是如何处理自定义异常的等等。
spring 中的一些注解
1. @component 和 @bean 的区别是什么?
作用对象不同:@component 注解作用于类,而 @bean 注解作用于方法、
@component 通常是通过路径扫描来自动侦测以及自动装配到 spring 容器中(我们可以使用 @componentscan 注解定义要扫描的路径从中找出标识了需要装配的类自动装配到 spring 的 bean 容器中)。@bean 注解通常是我们在标有该注解的方法中定义产生这个 bean,@bean 告诉了 spring 这是某个类的实例,当我们需要用它的时候还给我。
@bean 注解比 @component 注解的自定义性更强,而且很多地方我们只能通过 @bean 注解来注册 bean。比如当我们引用第三方库中的类需要装配到 spring 容器时,只能通过 @bean 来实现。
@bean 注解使用示例:
@configuration public class appconfig { @bean public transferservice transferservice() { return new transferserviceimpl(); } }
@component 注解使用示例:
@component public class serviceimpl implements aservice { .... }
下面这个例子是通过 @component 无法实现的:
@bean public oneservice getservice(status) { case (status) { when 1: return new serviceimpl1(); when 2: return new serviceimpl2(); when 3: return new serviceimpl3(); } }
2. autowire 和 @resource 的区别
@autowire 和 @resource都可以用来装配bean,都可以用于字段或setter方法。spring boot 学习笔记分享给你。
@autowire 默认按类型装配,默认情况下必须要求依赖对象必须存在,如果要允许 null 值,可以设置它的 required 属性为 false。
@resource 默认按名称装配,当找不到与名称匹配的 bean 时才按照类型进行装配。名称可以通过 name 属性指定,如果没有指定 name 属性,当注解写在字段上时,默认取字段名,当注解写在 setter 方法上时,默认取属性名进行装配。
注意:如果 name 属性一旦指定,就只会按照名称进行装配。
@autowire和@qualifier配合使用效果和@resource一样:
@autowired(required = false) @qualifier("example") private example example; @resource(name = "example") private example example;
@resource 装配顺序
- 如果同时指定 name 和 type,则从容器中查找唯一匹配的 bean 装配,找不到则抛出异常;
- 如果指定 name 属性,则从容器中查找名称匹配的 bean 装配,找不到则抛出异常;
- 如果指定 type 属性,则从容器中查找类型唯一匹配的 bean 装配,找不到或者找到多个抛出异常;
- 如果不指定,则自动按照 byname 方式装配,如果没有匹配,则回退一个原始类型进行匹配,如果匹配则自动装配。
3. 将一个类声明为 spring 的 bean 的注解有哪些?
- @component :通用的注解,可标注任意类为 spring 的组件。如果一个 bean 不知道属于哪个层,可以使用 @component 注解标注。
- @repository :对应持久层即 dao 层,主要用于数据库相关操作。
- @service :对应服务层,主要设计一些复杂的逻辑,需要用到 dao 层。
- @controller :对应 spring mvc 控制层,主要用来接受用户请求并调用 service 层返回数据给前端页面。
- @configuration :声明该类为一个配置类,可以在此类中声明一个或多个 @bean 方法。
4. @configuration :配置类注解
@configuration 表明在一个类里可以声明一个或多个 @bean 方法,并且可以由 spring 容器处理,以便在运行时为这些 bean 生成 bean 定义和服务请求,例如:
@configuration public class appconfig { @bean public mybean mybean() { // instantiate, configure and return bean ... } }
我们可以通过 annotationconfigapplicationcontext 来注册 @configuration 类:
annotationconfigapplicationcontext ctx = new annotationconfigapplicationcontext(); ctx.register(appconfig.class); ctx.refresh(); mybean mybean = ctx.getbean(mybean.class); // use mybean ...
另外也可以通过组件扫描(component scanning)来加载,@configuration 使用 @component 进行原注解,因此 @configuration 类也可以被组件扫描到(特别是使用 xml 的 元素)。@configuration 类不仅可以使用组件扫描进行引导,还可以使用 @componentscan 注解自行配置组件扫描:
@configuration @componentscan("com.acme.app.services") public class appconfig { // various @bean definitions ... }
使用 @configuration 的约束:
- 配置类必须以类的方式提供(比如不能是由工厂方法返回的实例)。
- 配置类必须是非 final 的。
- 配置类必须是非本地的(即可能不在方法中声明),native 标注的方法。
- 任何嵌套的配置类必须声明为 static。
- @bean 方法可能不会反过来创建更多的配置类。
- 除了单独使用 @configuration 注解,我们还可以结合一些外部的 bean 或者注解共同使用,比如 environment api,@propertysource,@value,@profile 等等许多,这里就不做详细介绍了,更多的用法可以参看 spring @configuration 的相关文档 。
推荐一个 spring boot 基础教程及实战示例:https://github.com/javastacks...
5. @controlleradvice :处理全局异常利器
在 spring 3.2 中,新增了 @controlleradvice、@restcontrolleradvice、@restcontroller 注解,可以用于定义 @exceptionhandler、@initbinder、@modelattribute,并应用到所有 @requestmapping 、@postmapping、@getmapping等这些 controller 层的注解中。
默认情况下,@controlleradvice 中的方法应用于全局所有的 controller。而使用选择器 annotations(),basepackageclasses() 和 basepackages() (或其别名value())来定义更小范围的目标 controller 子集。spring boot 学习笔记分享给你。
如果声明了多个选择器,则应用 or 逻辑,这意味着所选的控制器应匹配至少一个选择器。请注意,选择器检查是在运行时执行的,因此添加许多选择器可能会对性能产生负面影响并增加复杂性。
@controlleradvice 我们最常使用的是结合 @exceptionhandler 用于全局异常的处理。可以结合以下例子,我们可以捕获自定义的异常进行处理,并且可以自定义状态码返回:
@controlleradvice("com.developlee.errorhandle") public class myexceptionhandler { /** * 捕获customexception * @param e * @return json格式类型 */ @responsebody @exceptionhandler({customexception.class}) //指定拦截异常的类型 @responsestatus(httpstatus.internal_server_error) //自定义浏览器返回状态码 public map>string, object< customexceptionhandler(customexception e) { map<string, object> map = new hashmap<>(); map.put("code", e.getcode()); map.put("msg", e.getmsg()); return map; } }
更多信息可以参看 spring @controlleradvice 的官方文档。推荐一个 spring boot 基础教程及实战示例:https://github.com/javastacks/spring-boot-best-practice
6. @component, @repository, @service 的区别
@component是一个通用的spring容器管理的单例bean组件。而@repository, @service, @controller就是针对不同的使用场景所采取的特定功能化的注解组件。
因此,当你的一个类被@component所注解,那么就意味着同样可以用@repository, @service, @controller 来替代它,同时这些注解会具备有更多的功能,而且功能各异。
最后,如果你不知道要在项目的业务层采用@service还是@component注解。那么,@service是一个更好的选择。
总结
以上简单介绍了几种 spring 中的几个注解及代码示例,就我个人而言,均是平时用到且不容易理解的几个,或者容易忽略的几个。当然,这篇文章并没有完全介绍完,在今后还会继续补充完善。
到此这篇关于spring @bean和@component注解区别的文章就介绍到这了,更多相关spring @bean @component内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!