I'm developing a simple web application, a form. I did the DAO's, Facades and they are working correctly (at least I think they are) but I will also need to edit some values directly in the bank only these changes are not being reflected in the application, for example, the bank contains the " student "with value 20, and this value is normally loaded and displayed in the application, when doing the value editing by the application the value is normally edited, but when performing manual editing (replace 20 by 30 directly in the bank for example) and reload the view, JSF goes through all the necessary methods (an init () method annotated with @PostConstruct) but does not display the changed value but rather the old value.
I have already tried with @RequestScoped and @ViewScoped. Is this normal?
I'm using JSF2.2, EclipseLink, MySQL and JPA.