How to limit user access at database level in Hibernate
问题 The App I need to implement a web app that will be used by different users. Each user has different privileges on various tables, e.g. User A can see fields 'name' and 'address' from the table Student User B can see fields 'name' and 'phone number', but not 'address' from the table Student User C can see and modify all fields mentioned above I will have something at the UI level to limit certain access, e.g. hide the "edit" button for users that don't have permission to modify entries.