@Entity
와 @OneToMany
선언을 해주지 않아서 발생Error creating bean with name 'dataSource' defined in class path resource 'script' must not be null or empty
→ data.sql, schema.sql 빈 채로 돌려서 발생org.hibernate.AnnotationException: mappedBy reference an unknown target entity property: airbnb.domain.Booking.user in airbnb.User.User.bookings
→ 한쪽만 맵핑해주고 mappedby를 써서 생긴 문제. 반대편에 @ManyToOne
추가로 해결