Good, I am retouching an old application and I need to make a call to the database to retrieve an information.
It is made in java, spring and hibernate.
I have these variables.
@Autowired private ApplicationContext appContext;
private UsersManagerManager;
and the call I'm doing it like that. UsersManager usersManager = (UsersManager) appContext.getBean ("userManager");
is giving me a proxy, and I do not know what I'm doing wrong, I do not know if I should change something or treat what I recover as the proxy and then extract the data from it.
Greetings and Thanks