私のPOJOは:
import org.jongo.marshall.jackson.id.Id;
public class User {
@Id
private String id;
private String name;
private int age;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
}
mongoデータベースからユーザーを取得し、ジャクソンマッパーを使用してファイルに出力したい
ObjectMapper mapper = new ObjectMapper();
mapper.writerWithDefaultPrettyPrinter().writeValue(new File("c:/user.txt"), user);
私のファイルにはこのようなものがあります
{
"name" : "John",
"age" : 23,
"_id" : {
"time" : 1358443593000,
"inc" : 660831772,
"machine" : 2028353122,
"new" : false,
"timeSecond" : 1358443593
}
}
このオブジェクトを逆シリアル化すると、pojoのidフィールドは次のようになるため、idフィールドを文字列としてファイルに保存する必要があります
{"time":1358443593000、 "inc":660831772、 "machine":2028353122、 "new":false、 "timeSecond":1358443593}
どんな助けでも感謝されます