I'm new to jsf and am trying to get started with a basic app using jsf, hibernate and spring.
basically, loginController has a method login() that sets the authenticatedUser property with the domain object returned by the service class.
in the "success" page, loginController is the same instance as in the login page, so i can access the user details using loginController.authenticatedUser, but authenticatedUser is empty..
so #{authenticatedUser.email} returns blank but #{loginController.authenticatedUser.email} returns the email for the user..
when injecting a managed bean into another, does jsf inject an object reference or a "copy" of the bean?