Difference: 1. The @Autowired annotation is provided by Spring and is only injected according to byType; the @resource annotation is provided by J2EE and is automatically injected according to byName by default. 2. @Autowired is assembled by type by default, and @Resource is assembled by name by default.
Related recommendations: "Java Video Tutorial"
Spring not only supports its own @Autowired annotations , also supports several annotations defined by the JSR-250 specification. For example: @Resource, @PostConstruct and @PreDestroy
1, @Autowired
are provided by Spring and are only injected according to byType
2 , @Resource
is provided by J2EE, and is automatically injected by byName by default.
@Resource has two important attributes: name and type
Spring annotates @Resource The name attribute resolves to the name of the bean, and the type attribute resolves to the bean type. So if you use the name attribute, the byName automatic injection strategy is used, and if the type attribute is used, the byType automatic injection strategy is used. If neither name nor type attribute is specified, the byName automatic injection strategy will be used through the reflection mechanism.
@Resource assembly sequence:
(1) If name and type are specified at the same time, the only matching bean will be found from the Spring context for assembly. If it is not found, an exception will be thrown
(2) If name is specified, the bean matching the name (id) will be searched from the Spring context for assembly. If no bean is found, an exception will be thrown
(3) If type is specified, then Find the only bean with a matching type from the Spring context for assembly. If no bean is found or more than one is found, an exception will be thrown
(4) If neither name nor type is specified, the byName method will be automatically used. Perform assembly. If there is no match, fallback to a primitive type for matching, and autowire if there is a match.
The function of @Resource is equivalent to @Autowired, except that @Autowired is automatically injected according to byType.
3. Differences in usage
(1) Both @Autowired and @Resource can be used to assemble beans, and both can be written in the field or setterOn the method
(2)@Autowired is assembled by type by default. By default, the dependent object must exist. If you want toallow null values , you can set its required attribute to false. If you want to use name assembly , you can use it in conjunction with the @Qualifier annotation .
(3) @Resource, is assembled according to the name by default. The name can be specified through the name attribute . If the name attribute is not specified, When an annotation is written on a field, defaults to the field name for name search. If the annotation is written on the setter method, the attribute name will be used for assembly by default. When cannot find a bean matching the name, is assembled according to the type . However, it should be noted that if the name attribute is specified, it will only be assembled according to the name.
It is recommended to use the @Resource annotation on the field, so that there is no need to write a setter method, and this annotation belongs to J2EE, reducing the coupling with Spring.
@Resource Note
For more programming-related knowledge, please visit: Programming Teaching! !
The above is the detailed content of What is the difference between @autowired and @resource annotations?. For more information, please follow other related articles on the PHP Chinese website!

引言:PHPDoc是一种用于php代码的注释标准,可生成易于理解且信息丰富的文档。通过使用特定的注释标签,PHPDoc允许开发人员提供有关函数、类、方法和其他代码元素的重要详细信息。这篇进阶指南将深入探讨PHPDoc,展示其功能并提供有效的文档化策略。语法和标签:PHPDoc注释以双斜杠(//)或多行注释(/**/)开头。以下是一些常见的注释标签:@param:定义函数或方法的参数。@return:指定函数或方法的返回值。@throws:说明函数或方法可能引发的异常。@var:定义类的属性或实例

JUnit框架中的注解用于声明和配置测试方法,主要注解包括:@Test(声明测试方法)、@Before(测试方法执行前运行的方法)、@After(测试方法执行后运行的方法)、@BeforeClass(所有测试方法执行前运行的方法)、@AfterClass(所有测试方法执行后运行的方法),这些注解有助于组织和简化测试代码,并通过提供明确的意图和配置来提高测试代码的可读性和可维护性。

Jackson库中的注解可控制JSON序列化和反序列化:序列化:@JsonIgnore:忽略属性@JsonProperty:指定名称@JsonGetter:使用获取方法@JsonSetter:使用设置方法反序列化:@JsonIgnoreProperties:忽略属性@JsonProperty:指定名称@JsonCreator:使用构造函数@JsonDeserialize:自定义逻辑

用@ConfigurationProperties代替@Value使用方法定义对应字段的实体@Data//指定前缀@ConfigurationProperties(prefix="developer")@ComponentpublicclassDeveloperProperty{privateStringname;privateStringwebsite;privateStringqq;privateStringphoneNumber;}使用时注入这个bean@RestCon

MyBatis注解动态SQL的使用方法详解IntroductiontotheusageofMyBatisannotationdynamicSQLMyBatis是一个持久层框架,为我们提供了便捷的持久化操作。在实际开发中,通常需要根据业务需求来动态生成SQL语句,以实现灵活的数据操作。MyBatis注解动态SQL正是为了满足这一需求而设计的,本

注解在GoogleGuice中至关重要,用于声明依赖项、绑定提供程序和配置注射行为。开发人员可以通过@Inject标注字段或构造函数参数来声明依赖项,使用@Provides注解标记提供依赖项的方法,并通过Guice模块绑定提供程序和配置注射行为。

MyBatis注解动态SQL在实际项目中的应用与优化引言:MyBatis是一款优秀的持久层框架,它提供了多种SQL映射的方式,包括XML配置文件和注解。其中注解动态SQL是MyBatis的一项强大的功能,可以在运行时根据条件动态生成SQL语句,适用于处理复杂的业务逻辑。本文将介绍MyBatis注解动态SQL在实际项目中的应用,同时分享一些优化技巧与代码示例。

深入理解MyBatis注解动态SQL的原理与实现MyBatis是一个流行的Java持久化框架,它提供了一种方便的方式来处理数据库操作,同时也支持动态SQL。动态SQL是指根据不同的条件,在运行时动态地生成不同的SQL语句。MyBatis提供了两种实现动态SQL的方式,分别是XML配置方式和注解方式。本文将深入解析MyBatis注


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Zend Studio 13.0.1
Powerful PHP integrated development environment

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
