What is the difference between managed bean and spring controllers?

I am developing a spring-hibernate-jsf application, but I do not understand the difference between a managed and a spring controller. I think managed beans work like controllers. Are there any advantages to using a controller or a managed one?

+6
source share
1 answer

Managed components provide services and are used as models for user interface components. Controllers are request / response components, such as servlets.

JSF - - & Spring - DI-. JSF & Spring bean-, ManagedBeans JSF ManagedBeans Spring Controllers @Controller.

, , Spring & JSF .

+1

All Articles