1
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 that these changes are not being reflected in the application, for example, the bank contains the column "student registration" with the value 20, and this value is loaded and displayed normally in the application, when editing the value by the application the value is edited normally, but when performing manual editing (replace 20 by 30 directly in the database 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 the old value.
I have tried with @Requestscoped and @Viewscoped. This is normal?
I am using JSF2.2, Eclipselink, Mysql and JPA.