I\'m trying to get a list of all the users from \"users\" table and I get the following error:
org.hibernate.hql.internal.ast.QuerySyntaxException: users is
In your Query you have to use class name(User) not table name(users) so your query is "from User"