Hibernate INSERT with foreign key relation without UPDATE permissionsHibernate: Where do insertable = false, updatable = false belong in composite primary key constellations involving foreign keys?Should Hibernate be able to handle overlapping foreign keys?The JPA hashCode() / equals() dilemmaCreate the perfect JPA entityNull foreign key, in ManyToOne relation using hibernate [4.1.1] annotationsHibernate update with relations foreign keyInsert entity with foreign key in hibernate without having to query related entityHibernate Foreign Key Name for ManyToOne with JoinTableHibernate Postgresql select for update with outer join issueforeign key not updated in one to many hibernate mapping
Do we know the situation in Britain before Sealion (summer 1940)?
Suffocation while cooking under an umbrella?
How to say "cheat sheet" in French
Lost Update Understanding
Fuel sender works when outside of tank, but not when in tank
Received a package but didn't order it
Labview vs Matlab??Which one better for image processing?
Why does C++ have 'Undefined Behaviour' and other languages like C# or Java don't?
How do pilots align the HUD with their eyeballs?
Why does (inf + 0j)*1 evaluate to inf + nanj?
Can anyone put a name to this Circle of Fifths observation?
Is it more effective to add yeast before or after kneading?
What should I consider when deciding whether to delay an exam?
My Project Manager does not accept carry-over in Scrum, Is that normal?
On the meaning of 'anyways' in "What Exactly Is a Quartz Crystal, Anyways?"
What exactly did this mechanic sabotage on the American Airlines 737, and how dangerous was it?
Strange Sticky Substance on Digital Camera
Reorder a matrix, twice
How to see the previous "Accessed" date in Windows
How to clarify between imagined sensations and "real" fantasy events?
relating two diagrams in tikzcd
Examples of "unsuccessful" theories with afterlives
I am 15 years old and do not go to a Yeshiva but would like to learn Talmud. A few rabbis near me said they could teach me. How should I start
Difference between types of yeast
Hibernate INSERT with foreign key relation without UPDATE permissions
Hibernate: Where do insertable = false, updatable = false belong in composite primary key constellations involving foreign keys?Should Hibernate be able to handle overlapping foreign keys?The JPA hashCode() / equals() dilemmaCreate the perfect JPA entityNull foreign key, in ManyToOne relation using hibernate [4.1.1] annotationsHibernate update with relations foreign keyInsert entity with foreign key in hibernate without having to query related entityHibernate Foreign Key Name for ManyToOne with JoinTableHibernate Postgresql select for update with outer join issueforeign key not updated in one to many hibernate mapping
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have two tables Table A and Table B, Table B has a foreign key to the Table A.
Given a database user with only SELECT and INSERT rights, I need to insert to both tables from my Spring Boot application with Hibernate.
My problem is, that Hibernate generates the following query:
SELECT 1 FROM ONLY "Table A" x WHERE "id" OPERATOR(pg_catalog.=) $1 FOR KEY SHARE OF x
that needs UPDATE permissions (and the user don't have them). The FOR KEY SHARE query should be a lock for the foreign key relation, if I understand it correctly.
My Table A entity is annotated with @Immutable, but it doesn't seem to work. The @JoinColumn(updatable = false) either.
How can I say Hibernate that I don't want this lock?
java postgresql hibernate spring-boot
add a comment
|
I have two tables Table A and Table B, Table B has a foreign key to the Table A.
Given a database user with only SELECT and INSERT rights, I need to insert to both tables from my Spring Boot application with Hibernate.
My problem is, that Hibernate generates the following query:
SELECT 1 FROM ONLY "Table A" x WHERE "id" OPERATOR(pg_catalog.=) $1 FOR KEY SHARE OF x
that needs UPDATE permissions (and the user don't have them). The FOR KEY SHARE query should be a lock for the foreign key relation, if I understand it correctly.
My Table A entity is annotated with @Immutable, but it doesn't seem to work. The @JoinColumn(updatable = false) either.
How can I say Hibernate that I don't want this lock?
java postgresql hibernate spring-boot
add a comment
|
I have two tables Table A and Table B, Table B has a foreign key to the Table A.
Given a database user with only SELECT and INSERT rights, I need to insert to both tables from my Spring Boot application with Hibernate.
My problem is, that Hibernate generates the following query:
SELECT 1 FROM ONLY "Table A" x WHERE "id" OPERATOR(pg_catalog.=) $1 FOR KEY SHARE OF x
that needs UPDATE permissions (and the user don't have them). The FOR KEY SHARE query should be a lock for the foreign key relation, if I understand it correctly.
My Table A entity is annotated with @Immutable, but it doesn't seem to work. The @JoinColumn(updatable = false) either.
How can I say Hibernate that I don't want this lock?
java postgresql hibernate spring-boot
I have two tables Table A and Table B, Table B has a foreign key to the Table A.
Given a database user with only SELECT and INSERT rights, I need to insert to both tables from my Spring Boot application with Hibernate.
My problem is, that Hibernate generates the following query:
SELECT 1 FROM ONLY "Table A" x WHERE "id" OPERATOR(pg_catalog.=) $1 FOR KEY SHARE OF x
that needs UPDATE permissions (and the user don't have them). The FOR KEY SHARE query should be a lock for the foreign key relation, if I understand it correctly.
My Table A entity is annotated with @Immutable, but it doesn't seem to work. The @JoinColumn(updatable = false) either.
How can I say Hibernate that I don't want this lock?
java postgresql hibernate spring-boot
java postgresql hibernate spring-boot
edited Mar 28 at 22:43
vkirilichev
asked Mar 28 at 17:37
vkirilichevvkirilichev
866 bronze badges
866 bronze badges
add a comment
|
add a comment
|
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/4.0/"u003ecc by-sa 4.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%2f55403790%2fhibernate-insert-with-foreign-key-relation-without-update-permissions%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%2f55403790%2fhibernate-insert-with-foreign-key-relation-without-update-permissions%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