@Controller: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
=External=
* https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/stereotype/Controller.html
=Internal=
=Internal=


* [[Spring_MVC_Concepts#Controller|Spring MVC Concepts]]
* [[Spring_MVC_Concepts#Controller|Spring MVC Concepts]]
* [[Spring_Dependency_Injection_and_Inversion_of_Control_Container_Concepts#Beans|Spring Dependency Injection and Inversion of Control Container Concepts]]
* [[Spring_Dependency_Injection_and_Inversion_of_Control_Container_Concepts#Stereotypes|Spring Dependency Injection and Inversion of Control Container Concepts]]


=Overview=
=Overview=


The annotation identifies the class as a candidate for [[Spring_Dependency_Injection_and_Inversion_of_Control_Container_Concepts#Component_Scanning|component scanning]]. Aside from that, it doesn't do much, except that it conveys the role of the class within the application. For more details see: {{InternalSpring_MVC_Concepts#Controller|Controller|}}
The annotation identifies the class as a candidate for [[Spring_Dependency_Injection_and_Inversion_of_Control_Container_Concepts#Component_Scanning|component scanning]]. Aside from that, it doesn't do much, except that it conveys the role of the class within the application. For more details see: {{Internal|Spring_MVC_Concepts#Controller|Controller}}

Latest revision as of 01:50, 4 November 2018

External

Internal

Overview

The annotation identifies the class as a candidate for component scanning. Aside from that, it doesn't do much, except that it conveys the role of the class within the application. For more details see:

Controller