- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在保存具有 ManyToOne 双向关系的实体时遇到问题,这里是:
警告:HHH000437:正在尝试保存一个或多个与未保存的 transient 实体具有不可空关联的实体。在保存这些依赖实体之前,必须在操作中保存未保存的 transient 实体。未保存的临时实体:([com.epam.apartmentsbooking.model.City#912])依赖实体:([[com.epam.apartmentsbooking.model.Apartment#640]])不可为 null 的关联:([com.epam.apartmentsbooking.model.Apartment.city])
org.hibernate.TransientPropertyValueException:非空属性引用 transient 值 - transient 实例必须在当前操作之前保存:com.epam.apartmentsbooking.model.Apartment.city -> com.epam.apartmentsbooking.model .城市
这看起来很常见,但我无法在数据库中保存引用现有城市的实体。
这是我的代码
Apartment.java:
package com.epam.apartmentsbooking.model;
import java.io.Serializable;
/**
* <p>
* Class describes the apartment entity
*/
public class Apartment implements Serializable {
private Long id;
private String name;
private String accommodationType;
private Byte numberOfGuests;
private Byte numberOfBedrooms;
private Byte numberOfBathrooms;
private Float pricePerDay;
private Float square;
private Short floor;
private String description;
private City city;
/**
* Default constructor of the class
* Should be used only when properties will be set later
*/
public Apartment() {
id = -1L;
name = "Default name";
accommodationType = null;
numberOfGuests = 0;
numberOfBedrooms = 0;
numberOfBathrooms = 0;
pricePerDay = 0F;
square = 0F;
floor = 0;
description = "Default description";
city = new City();
}
/**
* Counstructor that fully makes the object, should be used in most cases
*
* @param id ID of the apartment
* @param name Name of the apartment
* @param accommodationType Accommodation type (House, Apartment, Studio Apartment)
* @param numberOfGuests Maximum number of guests that host can place in the apartment
* @param numberOfBedrooms Number of bedrooms in the apartment
* @param numberOfBathrooms Number of bathrooms in the apartment
* @param pricePerDay Price per day for the apartment
* @param square Square of the apartment (in sq. m.)
* @param floor Floor on which apartment is located
* @param description Description of the apartment
* @param city City where apartment is located
*/
public Apartment(Long id, String name, String accommodationType, Byte numberOfGuests, //NOSONAR
Byte numberOfBedrooms, Byte numberOfBathrooms, Float pricePerDay, Float square, Short floor,
String description, City city) {
this.id = id;
this.name = name;
this.accommodationType = accommodationType;
this.numberOfGuests = numberOfGuests;
this.numberOfBedrooms = numberOfBedrooms;
this.numberOfBathrooms = numberOfBathrooms;
this.pricePerDay = pricePerDay;
this.square = square;
this.floor = floor;
this.description = description;
this.city = city;
}
/**
* @return the id of the apartment
*/
public Long getId() {
return id;
}
/**
* @param id id of the apartment to be set
*/
public void setId(Long id) {
this.id = id;
}
/**
* @return the name of the apartment
*/
public String getName() {
return name;
}
/**
* @param name the name to be set
*/
public void setName(String name) {
this.name = name;
}
/**
* @return Accommodation type of the apartment
*/
public String getAccommodationType() {
return accommodationType;
}
/**
* @param accomodationType accommodationType to be set
*/
public void setAccommodationType(String accomodationType) {
this.accommodationType = accomodationType;
}
/**
* @return the maximum number of guest that may be placed in the apartment
*/
public Byte getNumberOfGuests() {
return numberOfGuests;
}
/**
* @param numberOfGuests number of guests to be set
*/
public void setNumberOfGuests(Byte numberOfGuests) {
this.numberOfGuests = numberOfGuests;
}
/**
* @return the number of bedrooms
*/
public Byte getNumberOfBedrooms() {
return numberOfBedrooms;
}
/**
* @param numberOfBedrooms the number of bedrooms to be set
*/
public void setNumberOfBedrooms(Byte numberOfBedrooms) {
this.numberOfBedrooms = numberOfBedrooms;
}
/**
* @return the number of bathrooms
*/
public Byte getNumberOfBathrooms() {
return numberOfBathrooms;
}
/**
* @param numberOfBathrooms the number of bathrooms to be set
*/
public void setNumberOfBathrooms(Byte numberOfBathrooms) {
this.numberOfBathrooms = numberOfBathrooms;
}
/**
* @return the price of stay per day
*/
public Float getPricePerDay() {
return pricePerDay;
}
/**
* @param pricePerDay the price to be set
*/
public void setPricePerDay(Float pricePerDay) {
this.pricePerDay = pricePerDay;
}
/**
* @return the square of the apartment in square meters
*/
public Float getSquare() {
return square;
}
/**
* @param square square of the apartment to be set
*/
public void setSquare(Float square) {
this.square = square;
}
/**
* @return floor number of the apartment
*/
public Short getFloor() {
return floor;
}
/**
* @param floor number of floor to be set
*/
public void setFloor(Short floor) {
this.floor = floor;
}
/**
* @return the description of the apartment
*/
public String getDescription() {
return description;
}
/**
* @param description description to be set
*/
public void setDescription(String description) {
this.description = description;
}
/**
* @return the city of the apartment
*/
public City getCity() {
return city;
}
/**
* @param city city to be set
*/
public void setCity(City city) {
this.city = city;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Apartment apartment = (Apartment) o;
if (!id.equals(apartment.id)) return false;
if (!name.equals(apartment.name)) return false;
if (accommodationType.equals(apartment.accommodationType)) return false;
if (!numberOfGuests.equals(apartment.numberOfGuests)) return false;
if (!numberOfBedrooms.equals(apartment.numberOfBedrooms)) return false;
if (!numberOfBathrooms.equals(apartment.numberOfBathrooms)) return false;
if (!pricePerDay.equals(apartment.pricePerDay)) return false;
if (!square.equals(apartment.square)) return false;
if (!floor.equals(apartment.floor)) return false;
if (!description.equals(apartment.description)) return false;
return city.equals(apartment.city);
}
@Override
public int hashCode() {
int result = id.hashCode();
result = 31 * result + name.hashCode();
result = 31 * result + accommodationType.hashCode();
result = 31 * result + numberOfGuests.hashCode();
result = 31 * result + numberOfBedrooms.hashCode();
result = 31 * result + numberOfBathrooms.hashCode();
result = 31 * result + pricePerDay.hashCode();
result = 31 * result + square.hashCode();
result = 31 * result + floor.hashCode();
result = 31 * result + description.hashCode();
result = 31 * result + city.hashCode();
return result;
}
@Override
public String toString() {
return "Apartment{" +
"id=" + id +
", name='" + name + '\'' +
", accomodationType=" + accommodationType +
", numberOfGuests=" + numberOfGuests +
", numberOfBedrooms=" + numberOfBedrooms +
", numberOfBathrooms=" + numberOfBathrooms +
", pricePerDay=" + pricePerDay +
", square=" + square +
", floor=" + floor +
", description='" + description + '\'' +
", city=" + city +
'}';
}
城市.java:
package com.epam.apartmentsbooking.model;
import java.io.Serializable;
import java.util.HashSet;
import java.util.Set;
/**
* <p>
* Class describes city entity
*/
public class City implements Serializable {
private Long id;
private String name;
private Country country;
private Set<Apartment> apartments = new HashSet<>();
/**
* Default constructor
* Preferable not to use
*/
public City() {
id = 912L;
name = "Minsk";
country = new Country();
}
/**
* Creates new city object
* Should be used in most cases
*
* @param id Id of the city
* @param name Name of the city
* @param country ISO Code of the country
*/
public City(Long id, String name, Country country) {
this.id = id;
this.name = name;
this.country = country;
}
/**
* @return the name of the city
*/
public String getName() {
return name;
}
/**
* @param name The name of the city to be set
*/
public void setName(String name) {
this.name = name;
}
/**
* @return Country object which the city is references on
*/
public Country getCountry() {
return country;
}
/**
* @param country Country object to set
*/
public void setCountry(Country country) {
this.country = country;
}
/**
* @return id of the city
*/
public Long getId() {
return id;
}
/**
* @param id id to be set
*/
public void setId(Long id) {
this.id = id;
}
public Set<Apartment> getApartments() {
return apartments;
}
public void setApartments(Set<Apartment> apartments) {
this.apartments = apartments;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
City city = (City) o;
if (id != null ? !id.equals(city.id) : city.id != null) return false;
if (name != null ? !name.equals(city.name) : city.name != null) return false;
if (country != null ? !country.equals(city.country) : city.country != null) return false;
return apartments != null ? apartments.equals(city.apartments) : city.apartments == null;
}
@Override
public int hashCode() {
int result = id != null ? id.hashCode() : 0;
result = 31 * result + (name != null ? name.hashCode() : 0);
result = 31 * result + (country != null ? country.hashCode() : 0);
result = 31 * result + (apartments != null ? apartments.hashCode() : 0);
return result;
}
@Override
public String toString() {
return "City{" +
"id=" + id +
", name='" + name + '\'' +
", country=" + country +
", apartments=" + apartments +
'}';
}
ApartmentDaoImpl.java:
package com.epam.apartmentsbooking.dao.impl.hibernate;
import com.epam.apartmentsbooking.dao.ApartmentDao;
import com.epam.apartmentsbooking.model.Apartment;
import com.epam.apartmentsbooking.model.City;
import org.hibernate.Criteria;
import org.hibernate.Query;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.criterion.Restrictions;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.stereotype.Repository;
import org.springframework.transaction.annotation.Transactional;
import java.util.Collection;
/**
*
* Apartment DAO Implementation
*
* @see com.epam.apartmentsbooking.dao.ApartmentDao
*/
@Repository("apartmentDaoHibernate")
@Transactional
public class ApartmentDaoImpl extends GenericDaoImpl<Apartment, Long> implements ApartmentDao {
@Autowired
@Qualifier("sessionFactory")
private SessionFactory sessionFactory;
@Override
public Long create(Apartment newInstance) {
return (Long) sessionFactory.getCurrentSession().save(newInstance);
}
@Override
public Apartment getByName(String name) {
Query query = sessionFactory.getCurrentSession().createQuery("from Apartment where name=:name");
query.setParameter("name", name);
return (Apartment) query.uniqueResult();
}
@Override
public Collection<Apartment> getAll() {
return sessionFactory.getCurrentSession().createCriteria(Apartment.class).list();
}
@Override
public Collection<Apartment> filter(String name, String accommodationType, Byte numberOfGuests,
Byte numberOfBedrooms, Byte numberOfBathrooms, Float pricePerDay,
Long cityId) {
Criteria criteria = sessionFactory.getCurrentSession().createCriteria(Apartment.class);
criteria.add(Restrictions.ilike("name", name + "%"));
criteria.add(Restrictions.ilike("accommodationType", accommodationType + "%"));
criteria.add(Restrictions.ge("numberOfGuests", numberOfGuests));
criteria.add(Restrictions.ge("numberOfBedrooms", numberOfBedrooms));
criteria.add(Restrictions.ge("numberOfBathrooms", numberOfBathrooms));
criteria.add(Restrictions.le("pricePerDay", pricePerDay));
criteria.add(Restrictions.eq("city.id", cityId));
return criteria.list();
}
测试用例
@Test
@ExpectedDatabase("/apartments-test-create.xml")
public void testCreate() {
Apartment newApartment = new Apartment(null, "Test Apartment#4", "STUDIO", (byte) 3, (byte) 3, (byte) 3,
400F, 78F, (short) 4, "EPAM Studio #2", new City());
apartmentDao.create(newApartment);
}
最佳答案
在您的 Apartment 类中,您必须告诉 hibernate 也可以将提交级联到“City”对象。您可以通过将 @Cascade 注释添加到 City 对象来执行此操作,如下所示:
@Cascade({ org.hibernate.annotations.CascadeType.ALL })
private City city;
现在,当您保留公寓时,也会同时保留城市。
或者,首先保留您的“城市”对象,然后使用保留的城市对象构建公寓对象。
关于java - Hibernate ManyToOne 保存对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45486361/
我只是没有明白这一点。下面的代码是怎么回事,哪里出错了?我必须上课:资源和预订。一个资源可以有多个预留,并且关系是双向的。对我来说,一切似乎都找到了,我已经查看了一堆资源和文档 - 是的,还有很多示例
我正在寻找有关大型遗留模式映射的一些建议。 情况是这样的。假设我们有一个名为 BusinessTransaction 的类。此类有几个引用用户 ID 的字段: @Entity public class
我正在寻找有关大型遗留模式映射的一些建议。 情况是这样的。假设我们有一个名为 BusinessTransaction 的类。此类有几个引用用户 ID 的字段: @Entity public class
我上课了: @Entity @Table(name="users") public class User{ private Integer id; private String name; priva
我有一个实体类 付款 其中有实体类 付款方式 与 多对一 关系。 现在因为我的 PaymentMethod 是主表。 所以我想在不影响主表 PaymentMethod 的情况下保存付款。 但是每次我保
关系的 @OneToMany 端填充良好,但 @ManyToOne 端每次都会覆盖(仅最后一项保留) @Entity @Table(name="order") public c
下面的联接保留了与每个客户端相关的 TaxJurisdictions,但它不包括插入中联接 (CLIENT_CODE) 中使用的列,导致我的数据库表 TBL_TAX_JURISDICTION.CLIE
我得到了城市和天气。天气应该指向数据库中的城市对象。一个城市可以有多个天气条目。我的问题是,每次我向数据库添加天气时,它都会创建一个具有相同名称但具有其他 ID 的新城市。 天气实体; @Entity
所以我的数据库中有一份文档有修订。文档表包含文档通用的元数据,修订版包含内容。目前我可以获得正确修订的文档。 我想做的是通过映射的所有修订获取文档列表。 这是我的两个实体: @Entity publi
大家好。 我有一个问题让我睡不着)例如,如果我有一个名为 Product 的实体(类)。我应该将这个产品与一堆图像链接起来。在数据库(在我的例子中是MySQL)中,我会创建一个产品表和图像表。图像表将
我使用 Spring Roo 对 MySQL 数据库进行逆向工程,这是一个我只有读取权限的数据库。 其中一个名为 Transaction 的实体有一个名为 originalTransaction 的字
我可以建立如下关系吗: @Entity Table1{ @ManyToOne @JoinColumn(name = "Column1", referen
我有以下单向 ManyToOne 关系: @Entity @Table(name = "Child") public class Child { @Id private Integer
我的关系非常简单,我的模型如下所示: public class Project { [PrimaryKey, AutoIncrement] public int ID { get; s
我有以下数据库结构: CREATE TABLE `author` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255
目录 jpa实体@ManyToOne @OneToMany无限递归 问题描述 解决办法 @OneToMany和@ManyTo
我在保存具有 ManyToOne 双向关系的实体时遇到问题,这里是: 警告:HHH000437:正在尝试保存一个或多个与未保存的 transient 实体具有不可空关联的实体。在保存这些依赖实体之前,
我有 2 个实体 - 具有映射 @ManyToOne 的用户和角色。我想更改用户角色,但角色也想更新。 用户实体: @ManyToOne @JoinColumn(name = "role_id", i
我有 4 个类如下... @MappedSuperclass @Inheritance(strategy=InheritanceType.TABLE_PER_CLASS) public abstrac
想象一下下面的类 @Embeddable class A { @ManyToOne public B classB; ... public State someEnum
我是一名优秀的程序员,十分优秀!