Save child and parent at the same timeUsing RowMapper and JdbcTemplate got NullPointerExceptionHibernate saves child entity with null parent idWebService - could not initialize proxy - no SessionJPA: bulk save child and parent entities at the same timeSmart cast to 'Type' is impossible, because 'variable' is a mutable property that could have been changed by this timeDeclaring same property in Child class as in ParentJPA @OneToMany doesn't save parent IDSaved child records is not loading with parentRetrofit 2 - Getting response 200, but list is emptySave Parent Child objects in Realm Swift
On studying Computer Science vs. Software Engineering to become a proficient coder
Why does the Earth follow an elliptical trajectory rather than a parabolic one?
How do I get past a 3-year ban from overstay with VWP?
International Code of Ethics for order of co-authors in research papers
How old is Captain America at the end of "Avengers: Endgame"?
Why in a Ethernet LAN, a packet sniffer can obtain all packets sent over the LAN?
Can I do brevets (long distance rides) on my hybrid bike? If yes, how to start?
Why is it so slow when assigning a concatenated string to a variable in python?
Was there ever any real use for a 6800-based Apple I?
How can I answer high-school writing prompts without sounding weird and fake?
Exception propagation: When to catch exceptions?
Can I use my laptop, which says 240V, in the USA?
How are one-time password generators like Google Authenticator different from having two passwords?
Why did God specifically target the firstborn in the 10th plague (Exodus 12:29-36)?
How to pronounce "r" after a "g"?
Best species to breed to intelligence
Delta TSA-Precheck status removed
How to deal with inappropriate comments during interviews for academic positions?
How do I tell my supervisor that he is choosing poor replacements for me while I am on maternity leave?
Pre-1993 comic in which Wolverine's claws were turned to rubber?
What is the significance of 4200 BCE in context of farming replacing foraging in Europe?
Why does TypeScript pack a Class in an IIFE?
Can 'sudo apt-get remove [write]' destroy my Ubuntu?
Is the schwa sound consistent?
Save child and parent at the same time
Using RowMapper and JdbcTemplate got NullPointerExceptionHibernate saves child entity with null parent idWebService - could not initialize proxy - no SessionJPA: bulk save child and parent entities at the same timeSmart cast to 'Type' is impossible, because 'variable' is a mutable property that could have been changed by this timeDeclaring same property in Child class as in ParentJPA @OneToMany doesn't save parent IDSaved child records is not loading with parentRetrofit 2 - Getting response 200, but list is emptySave Parent Child objects in Realm Swift
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I need to save 2 models at the same time in the transaction, but...
org.postgresql.util.PSQLException: ERROR: null value in column "book_id" violates not-null constraint
I don't understand what is going wrong. My models:
a) Chapter
@Entity
class Chapter() : AuditModel()
constructor(number: Int, title: String) : this()
this.number = number
this.title = title
@Column(nullable = false)
var number: Int? = null
@Column(nullable = false)
lateinit var title: String
@Column(nullable = false)
var progress: Int = 0
@ManyToOne
@JoinColumn(name = "book_id")
lateinit var book: Book
b) Book
@Entity
class Book() : AuditModel()
constructor(title: String, author: String) : this()
this.title = title
this.author = author
@Column(nullable = false)
lateinit var title: String
@Column(nullable = false)
lateinit var author: String
@OneToMany(mappedBy = "book", cascade = [CascadeType.PERSIST])
val chapters: MutableSet<Chapter> = HashSet()
And function where I save models:
@Transactional
fun createBook(title: String, author: String): Boolean
val book = Book(title, author)
val chapter = Chapter(1, "Example - 1")
book.chapters.add(chapter)
return bookRepository.save(book) != null
How to fix it? I'm new in Spring and it's totally incomprehensible to me.
spring kotlin relationship
|
show 3 more comments
I need to save 2 models at the same time in the transaction, but...
org.postgresql.util.PSQLException: ERROR: null value in column "book_id" violates not-null constraint
I don't understand what is going wrong. My models:
a) Chapter
@Entity
class Chapter() : AuditModel()
constructor(number: Int, title: String) : this()
this.number = number
this.title = title
@Column(nullable = false)
var number: Int? = null
@Column(nullable = false)
lateinit var title: String
@Column(nullable = false)
var progress: Int = 0
@ManyToOne
@JoinColumn(name = "book_id")
lateinit var book: Book
b) Book
@Entity
class Book() : AuditModel()
constructor(title: String, author: String) : this()
this.title = title
this.author = author
@Column(nullable = false)
lateinit var title: String
@Column(nullable = false)
lateinit var author: String
@OneToMany(mappedBy = "book", cascade = [CascadeType.PERSIST])
val chapters: MutableSet<Chapter> = HashSet()
And function where I save models:
@Transactional
fun createBook(title: String, author: String): Boolean
val book = Book(title, author)
val chapter = Chapter(1, "Example - 1")
book.chapters.add(chapter)
return bookRepository.save(book) != null
How to fix it? I'm new in Spring and it's totally incomprehensible to me.
spring kotlin relationship
It's extremely simple: the column chapter.book_id is mapped by the property Chapter.book. Chapter.book is null (i.e. never initialized anywhere). So the column is also set to null. And since your database table doesn't allow that, you get an exception.
– JB Nizet
Mar 23 at 11:07
lel? It's should work automatically? I added a new chapter to book.chapters, this chapter should know about book_id - or shouldn't?
– LookBad
Mar 23 at 11:18
No, it shouldn't. It's your responsibility to keep both sides of the association in coherence, and the owner side is chapter.book, so JPA doesn't care about book.chapters
– JB Nizet
Mar 23 at 11:24
How to change it?
– LookBad
Mar 23 at 11:35
chapter.book = book
– JB Nizet
Mar 23 at 11:51
|
show 3 more comments
I need to save 2 models at the same time in the transaction, but...
org.postgresql.util.PSQLException: ERROR: null value in column "book_id" violates not-null constraint
I don't understand what is going wrong. My models:
a) Chapter
@Entity
class Chapter() : AuditModel()
constructor(number: Int, title: String) : this()
this.number = number
this.title = title
@Column(nullable = false)
var number: Int? = null
@Column(nullable = false)
lateinit var title: String
@Column(nullable = false)
var progress: Int = 0
@ManyToOne
@JoinColumn(name = "book_id")
lateinit var book: Book
b) Book
@Entity
class Book() : AuditModel()
constructor(title: String, author: String) : this()
this.title = title
this.author = author
@Column(nullable = false)
lateinit var title: String
@Column(nullable = false)
lateinit var author: String
@OneToMany(mappedBy = "book", cascade = [CascadeType.PERSIST])
val chapters: MutableSet<Chapter> = HashSet()
And function where I save models:
@Transactional
fun createBook(title: String, author: String): Boolean
val book = Book(title, author)
val chapter = Chapter(1, "Example - 1")
book.chapters.add(chapter)
return bookRepository.save(book) != null
How to fix it? I'm new in Spring and it's totally incomprehensible to me.
spring kotlin relationship
I need to save 2 models at the same time in the transaction, but...
org.postgresql.util.PSQLException: ERROR: null value in column "book_id" violates not-null constraint
I don't understand what is going wrong. My models:
a) Chapter
@Entity
class Chapter() : AuditModel()
constructor(number: Int, title: String) : this()
this.number = number
this.title = title
@Column(nullable = false)
var number: Int? = null
@Column(nullable = false)
lateinit var title: String
@Column(nullable = false)
var progress: Int = 0
@ManyToOne
@JoinColumn(name = "book_id")
lateinit var book: Book
b) Book
@Entity
class Book() : AuditModel()
constructor(title: String, author: String) : this()
this.title = title
this.author = author
@Column(nullable = false)
lateinit var title: String
@Column(nullable = false)
lateinit var author: String
@OneToMany(mappedBy = "book", cascade = [CascadeType.PERSIST])
val chapters: MutableSet<Chapter> = HashSet()
And function where I save models:
@Transactional
fun createBook(title: String, author: String): Boolean
val book = Book(title, author)
val chapter = Chapter(1, "Example - 1")
book.chapters.add(chapter)
return bookRepository.save(book) != null
How to fix it? I'm new in Spring and it's totally incomprehensible to me.
spring kotlin relationship
spring kotlin relationship
asked Mar 23 at 11:03
LookBadLookBad
227
227
It's extremely simple: the column chapter.book_id is mapped by the property Chapter.book. Chapter.book is null (i.e. never initialized anywhere). So the column is also set to null. And since your database table doesn't allow that, you get an exception.
– JB Nizet
Mar 23 at 11:07
lel? It's should work automatically? I added a new chapter to book.chapters, this chapter should know about book_id - or shouldn't?
– LookBad
Mar 23 at 11:18
No, it shouldn't. It's your responsibility to keep both sides of the association in coherence, and the owner side is chapter.book, so JPA doesn't care about book.chapters
– JB Nizet
Mar 23 at 11:24
How to change it?
– LookBad
Mar 23 at 11:35
chapter.book = book
– JB Nizet
Mar 23 at 11:51
|
show 3 more comments
It's extremely simple: the column chapter.book_id is mapped by the property Chapter.book. Chapter.book is null (i.e. never initialized anywhere). So the column is also set to null. And since your database table doesn't allow that, you get an exception.
– JB Nizet
Mar 23 at 11:07
lel? It's should work automatically? I added a new chapter to book.chapters, this chapter should know about book_id - or shouldn't?
– LookBad
Mar 23 at 11:18
No, it shouldn't. It's your responsibility to keep both sides of the association in coherence, and the owner side is chapter.book, so JPA doesn't care about book.chapters
– JB Nizet
Mar 23 at 11:24
How to change it?
– LookBad
Mar 23 at 11:35
chapter.book = book
– JB Nizet
Mar 23 at 11:51
It's extremely simple: the column chapter.book_id is mapped by the property Chapter.book. Chapter.book is null (i.e. never initialized anywhere). So the column is also set to null. And since your database table doesn't allow that, you get an exception.
– JB Nizet
Mar 23 at 11:07
It's extremely simple: the column chapter.book_id is mapped by the property Chapter.book. Chapter.book is null (i.e. never initialized anywhere). So the column is also set to null. And since your database table doesn't allow that, you get an exception.
– JB Nizet
Mar 23 at 11:07
lel? It's should work automatically? I added a new chapter to book.chapters, this chapter should know about book_id - or shouldn't?
– LookBad
Mar 23 at 11:18
lel? It's should work automatically? I added a new chapter to book.chapters, this chapter should know about book_id - or shouldn't?
– LookBad
Mar 23 at 11:18
No, it shouldn't. It's your responsibility to keep both sides of the association in coherence, and the owner side is chapter.book, so JPA doesn't care about book.chapters
– JB Nizet
Mar 23 at 11:24
No, it shouldn't. It's your responsibility to keep both sides of the association in coherence, and the owner side is chapter.book, so JPA doesn't care about book.chapters
– JB Nizet
Mar 23 at 11:24
How to change it?
– LookBad
Mar 23 at 11:35
How to change it?
– LookBad
Mar 23 at 11:35
chapter.book = book
– JB Nizet
Mar 23 at 11:51
chapter.book = book
– JB Nizet
Mar 23 at 11:51
|
show 3 more comments
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55313023%2fsave-child-and-parent-at-the-same-time%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55313023%2fsave-child-and-parent-at-the-same-time%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
It's extremely simple: the column chapter.book_id is mapped by the property Chapter.book. Chapter.book is null (i.e. never initialized anywhere). So the column is also set to null. And since your database table doesn't allow that, you get an exception.
– JB Nizet
Mar 23 at 11:07
lel? It's should work automatically? I added a new chapter to book.chapters, this chapter should know about book_id - or shouldn't?
– LookBad
Mar 23 at 11:18
No, it shouldn't. It's your responsibility to keep both sides of the association in coherence, and the owner side is chapter.book, so JPA doesn't care about book.chapters
– JB Nizet
Mar 23 at 11:24
How to change it?
– LookBad
Mar 23 at 11:35
chapter.book = book
– JB Nizet
Mar 23 at 11:51