Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
426 views
in Technique[技术] by (71.8m points)

java - In JPA, what does setting a column's nullable to false actually do?

In JPA, if a column isn't nullable, it must have a default value. So if I say

@Column(nullable=false)
Boolean isExpired;

Would it default to true or false? What if it's an Integer or a Long or a String? Is there any way to specify this?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

@Column(nullable=false) simply means that you should always supply value to that field when inserting or updating. If you want to specify a default value you can always add this:

 @Column(columnDefinition = "boolean default false")

But as per your question, if you will not define a specific value for that field (through columnDefinition), it will still be null and will prompt an error during DB insert or update if it's null.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

1.4m articles

1.4m replys

5 comments

57.0k users

...