mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
#296 - ENH: Add to transaction setUpdateAllLoadedProperties() - force update all properties api
This commit is contained in:
@@ -8,49 +8,59 @@ import javax.persistence.Table;
|
||||
import javax.persistence.Version;
|
||||
|
||||
@Entity
|
||||
@Table(name="e_basicver")
|
||||
@Table(name = "e_basicver")
|
||||
public class EBasicVer {
|
||||
|
||||
@Id
|
||||
Integer id;
|
||||
|
||||
String name;
|
||||
|
||||
String description;
|
||||
|
||||
@Version
|
||||
Timestamp lastUpdate;
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
@Id
|
||||
Integer id;
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
String name;
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
String description;
|
||||
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
String other;
|
||||
|
||||
public void setDescription(String description) {
|
||||
this.description = description;
|
||||
}
|
||||
@Version
|
||||
Timestamp lastUpdate;
|
||||
|
||||
public Timestamp getLastUpdate() {
|
||||
return lastUpdate;
|
||||
}
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setLastUpdate(Timestamp lastUpdate) {
|
||||
this.lastUpdate = lastUpdate;
|
||||
}
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
|
||||
public void setDescription(String description) {
|
||||
this.description = description;
|
||||
}
|
||||
|
||||
public String getOther() {
|
||||
return other;
|
||||
}
|
||||
|
||||
public void setOther(String other) {
|
||||
this.other = other;
|
||||
}
|
||||
|
||||
public Timestamp getLastUpdate() {
|
||||
return lastUpdate;
|
||||
}
|
||||
|
||||
public void setLastUpdate(Timestamp lastUpdate) {
|
||||
this.lastUpdate = lastUpdate;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,108 @@
|
||||
package com.avaje.tests.update;
|
||||
|
||||
import com.avaje.ebean.BaseTestCase;
|
||||
import com.avaje.ebean.Ebean;
|
||||
import com.avaje.ebean.EbeanServer;
|
||||
import com.avaje.ebean.Transaction;
|
||||
import com.avaje.tests.model.basic.EBasicVer;
|
||||
import org.avaje.ebeantest.LoggedSqlCollector;
|
||||
import org.junit.Test;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
import static org.junit.Assert.assertTrue;
|
||||
|
||||
public class TestUpdateAllLoadedProperties extends BaseTestCase {
|
||||
|
||||
@Test
|
||||
public void test() {
|
||||
|
||||
EBasicVer basic1 = new EBasicVer();
|
||||
basic1.setName("basic1");
|
||||
basic1.setDescription("aaa");
|
||||
Ebean.save(basic1);
|
||||
|
||||
EBasicVer basic2 = new EBasicVer();
|
||||
basic1.setName("basic2");
|
||||
basic1.setDescription("bbb");
|
||||
Ebean.save(basic2);
|
||||
|
||||
|
||||
EbeanServer server = Ebean.getDefaultServer();
|
||||
Transaction txn = server.beginTransaction();
|
||||
try {
|
||||
|
||||
txn.setUpdateAllLoadedProperties(true);
|
||||
|
||||
LoggedSqlCollector.start();
|
||||
|
||||
basic2.setDescription("bbb-mod");
|
||||
server.save(basic2, txn);
|
||||
|
||||
basic1.setName("basic1-mod");
|
||||
basic1.setDescription("aaa-mod");
|
||||
server.save(basic1, txn);
|
||||
|
||||
txn.commit();
|
||||
|
||||
List<String> loggedSql = LoggedSqlCollector.stop();
|
||||
|
||||
assertEquals(2, loggedSql.size());
|
||||
// all properties in the bean
|
||||
assertTrue(loggedSql.get(0), loggedSql.get(0).contains("update e_basicver set name=?, description=?, other=?, last_update=? where id=? and last_update=?; --bind("));
|
||||
assertTrue(loggedSql.get(1), loggedSql.get(1).contains("update e_basicver set name=?, description=?, other=?, last_update=? where id=? and last_update=?; --bind("));
|
||||
|
||||
} finally {
|
||||
txn.end();
|
||||
}
|
||||
|
||||
testPartiallyLoaded(basic1.getId(), basic2.getId());
|
||||
|
||||
}
|
||||
|
||||
private void testPartiallyLoaded(Integer id1, Integer id2) {
|
||||
|
||||
List<Integer> ids = new ArrayList();
|
||||
ids.add(id1);
|
||||
ids.add(id2);
|
||||
|
||||
List<EBasicVer> beans = Ebean.find(EBasicVer.class)
|
||||
.select("name, other")
|
||||
.where().idIn(ids)
|
||||
.order().asc("id")
|
||||
.findList();
|
||||
|
||||
assertEquals(2, beans.size());
|
||||
|
||||
LoggedSqlCollector.start();
|
||||
|
||||
|
||||
Transaction txn = Ebean.beginTransaction();
|
||||
try {
|
||||
txn.setUpdateAllLoadedProperties(true);
|
||||
|
||||
EBasicVer basic1 = beans.get(0);
|
||||
basic1.setName("jim");
|
||||
Ebean.save(basic1);
|
||||
|
||||
EBasicVer basic2 = beans.get(1);
|
||||
basic2.setName("john");
|
||||
basic2.setOther("otherDesc");
|
||||
Ebean.save(basic2);
|
||||
|
||||
txn.commit();
|
||||
|
||||
} finally {
|
||||
txn.end();
|
||||
}
|
||||
|
||||
List<String> loggedSql = LoggedSqlCollector.stop();
|
||||
|
||||
assertEquals(2, loggedSql.size());
|
||||
assertTrue(loggedSql.get(0), loggedSql.get(0).contains("update e_basicver set name=?, other=?, last_update=? where id=?; --bind("));
|
||||
assertTrue(loggedSql.get(1), loggedSql.get(1).contains("update e_basicver set name=?, other=?, last_update=? where id=?; --bind("));
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user