Description
In the Spring Beans and Dependency Injection section of the documentation, the @Component
annotation is not rendered as a javadoc link, while other annotations like @Service
, @Repository
, and @Controller
are.
Current:
All of your application components (@Component
, javadoc:org.springframework.stereotype.Service[format=annotation], javadoc:org.springframework.stereotype.Repository[format=annotation], javadoc:org.springframework.stereotype.Controller[format=annotation], and others) are automatically registered as Spring Beans.
Expected:
All of your application components (javadoc:org.springframework.stereotype.Component[format=annotation], javadoc:org.springframework.stereotype.Service[format=annotation], javadoc:org.springframework.stereotype.Repository[format=annotation], javadoc:org.springframework.stereotype.Controller[format=annotation], and others) are automatically registered as Spring Beans.
Updating this would ensure consistency and improve navigation within the documentation.