我写这些法典
Query q = pm.newQuery(User.class);
q.setFilter("textPosts != null"); // textPosts is a Text
List<User> users = (List<User>) q.execute();
resp.getWriter().println("user num: " + users.size());
而且,我已经来到这里。
user num: 0
I m sure that the number should greater than 0.
I probably miss something important.
Thanks in advance!