単純なエンティティ クラスがあり、一意の名前を含める必要があります。
@Entity
class Package {
@PrimaryKey(sequence = "ID")
public Long id;
@SecondaryKey(relate = Relationship.ONE_TO_ONE)
public String name;
private Package() {}
public Package(String name) { this.name = name; }
@Override
public String toString() { return id + " : " + name; }
}
大幅な修正のため、据え置き書き込みオプションを使用したい。これが私が試したテストとその出力です。
final String dbfilename = "test01";
new File(dbfilename).mkdirs();
EnvironmentConfig config = new EnvironmentConfig().setAllowCreate(true);
Environment environment = new Environment(new File(dbfilename), config);
StoreConfig storeConfig = new StoreConfig().setAllowCreate(true).setDeferredWrite(true);
EntityStore store = new EntityStore(environment, "", storeConfig);
PrimaryIndex<Long, Package> primaryIndex = store.getPrimaryIndex(Long.class, Package.class);
try {
primaryIndex.put(new Package("package01")); // will be put.
primaryIndex.put(new Package("package01")); // throws exception.
} catch (UniqueConstraintException ex) {
System.out.println(ex.getMessage());
}
store.sync(); // flush them all
// expecting to find one element
SortedMap<Long,Package> sortedMap = primaryIndex.sortedMap();
for (Package entity : sortedMap.values()) {
System.out.println(entity);
}
出力
(JE 5.0.73) Unique secondary key is already present
1 : package01
2 : package01
したがって、私の質問は、2 番目のパッケージを配置しているときに例外がスローされたとしても、なぜ 2 つのパッケージがリストされるのかということです。トランザクションを使用せずにこれを回避する方法はありますか?
ありがとう。