我有两个具有 OneToOne 关系的模型。当我插入时,没问题,但是当我更新主模型时,它会在第二个模型中创建一个新行。
我的模型。
基本的
public class Nodo extends Model {
@Id
private int id;
@Valid
@OneToOne(cascade = CascadeType.ALL)
@JoinColumn(name="GP_ID")
private GeoPunto geopunto;
中学
@Entity
@Table(name="GeoPuntos")
public class GeoPunto extends Model{
@Id
private int id;
我的控制器:
public static Result editarEmpresa(Integer id){
if(!Secured.permiso()){
return ok(e403.render());
}
Form<Empresa> submitForm = empresaForm.bindFromRequest();
if (submitForm.hasErrors()) return badRequest(nueva_empresa.render(submitForm));
Empresa _empresa = submitForm.get();
_empresa.setId(id);
_empresa.update(Integer.parseInt(id + ""));
Form<Empresa> empresaForm = form(Empresa.class).fill(_empresa);
return ok(empresa.render(_empresa, empresaForm));
}
我希望你能帮助我。
更新
我不得不覆盖方法 UPDATE
@Override
public void update() {
String queryString = "UPDATE GEOPUNTOS SET " +
" latitud = :lat," +
" longitud = :long" +
" where id = :id";
SqlUpdate query = Ebean.createSqlUpdate(queryString).setParameter("lat", this.getGeopunto().getLatitud())
.setParameter("long", this.getGeopunto().getLongitud()).setParameter("id", this.getGeopunto().getId());
int rows = query.execute();
queryString = "UPDATE NODOS SET " +
" direccion_referencial = :dr," +
" ruc = :ruc, " +
" nombre = :nom " +
" where id = :id";
query = Ebean.createSqlUpdate(queryString).setParameter("dr",this.getDireccionReferencial())
.setParameter("ruc",this.getRuc()).setParameter("nom",this.getNombre())
.setParameter("id", this.getId());
rows = query.execute();
}
但我认为使用 ORM 我不需要这样做。