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;








1















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?










share|improve this question
































    1















    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?










    share|improve this question




























      1












      1








      1








      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?










      share|improve this question
















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 28 at 22:43







      vkirilichev

















      asked Mar 28 at 17:37









      vkirilichevvkirilichev

      866 bronze badges




      866 bronze badges

























          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
          );



          );














          draft saved

          draft discarded
















          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
















          draft saved

          draft discarded















































          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.




          draft saved


          draft discarded














          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





















































          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







          Popular posts from this blog

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

          은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현