@Controller: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
(One intermediate revision 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# | * [[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: {{ | 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: