コレクションにユーザー オブジェクトのリストがありますが、これを JSON 形式に変換して、HTML ページで JavaScript を使用してその json データを読み取ることができるようにしたいと考えています。
List<UserWithEmbeddedContact> users=(List<UserWithEmbeddedContact>) q.execute();
if(!users.isEmpty()) {
for(UserWithEmbeddedContact user:users) {
System.out.println("username="+user.getUsername()+
" password="+user.getPassword()+" mobile="+user.getMobile());
}
}