The injection point has the following annotations:- @org.springframework.beans.factory.annotation.Autowired(required=true)
时间: 2023-10-14 10:31:42 浏览: 2434
详解Spring @Autowired 注入小技巧
It seems like you're referring to an injection point in a Spring application. The annotation you mentioned is "@Autowired". This annotation is used in Spring to automatically wire dependencies into a bean. In this case, the "required=true" attribute indicates that the dependency being injected is mandatory, and Spring will throw an exception if it cannot find a suitable bean to inject.
Is there anything specific you would like to know or discuss about this annotation or dependency injection in Spring?
阅读全文