• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Question on updating a record using hibernate

 
Ranch Hand
Posts: 417
  • Number of slices to send:
    Optional 'thank-you' note:
While I am updating columns of a table using Hibernate, on the user interface, I'm not making any mandatory requirement that if there are 7 fields in the table, user must update 7

So there is a chance user can end up updating 3 fields sometimes or 5 or 7 (total fields).

In the case where the user is not sending all the parameters to the controller, am I supposed to check if user has supplied all the fields and if not get that or those fields from the database and send it along with the update request so that hibernate won't insert null?
 
Marshal
Posts: 28262
95
  • Number of slices to send:
    Optional 'thank-you' note:
It seems unlikely to me that if Hibernate gave you a Customer record, and you updated the customer's credit limit but nothing else, because you wanted to leave all of the other columns unchanged, then Hibernate would set all of the other columns to null. I think you may have had something else in mind when you said "insert null" but I can't quite tell what it was.
 
Jack Tauson
Ranch Hand
Posts: 417
  • Number of slices to send:
    Optional 'thank-you' note:

Paul Clapham wrote:It seems unlikely to me that if Hibernate gave you a Customer record, and you updated the customer's credit limit but nothing else, because you wanted to leave all of the other columns unchanged, then Hibernate would set all of the other columns to null. I think you may have had something else in mind when you said "insert null" but I can't quite tell what it was.



I meant the same thing when I said "insert null" in mind. Asking because I don't see any example online (unless I'm missing something) which shows these checks. Do you mind sharing some online resources talking about this with some examples?  
 
Paul Clapham
Marshal
Posts: 28262
95
  • Number of slices to send:
    Optional 'thank-you' note:
Seems to me you just need an example of updating a record. Like I said I would be astonished if there was a requirement to update all fields. I'm just giving you that answer instead of "hell no" because I haven't used Hibernate for a long time.  Or write your own test code and see what happens.
 
Marshal
Posts: 8880
638
  • Number of slices to send:
    Optional 'thank-you' note:
@OP

Depending how you have your implementation currently, but, consider if this approach makes sense to you.

Technically, what you describing is a patching, where some or all fields get updated.

So what you can do, is:
1. Get an existing object from db
2. Have a mapper DTO -> Model and vice versa
3. Now just use a mapper accordingly to map fields that aren't null/empty (whatever denotes not updated) in DTO and update Model fields
4. Persist an updated object

There is slightly another approach if you following Open API specs, but let's not dive into that yet.
 
Saloon Keeper
Posts: 27868
196
  • Number of slices to send:
    Optional 'thank-you' note:
When you are using an ORM persistence system such as Hibernate/JPA, you fetch and store ALL of the column data in a single operation. You don't code column-by-column operations. Instead, you fetch the row as an Entity instance, update the properties of that row that you want to change, then save the instance back to the database.

ORMs are smart and they know what columns you actually altered, so they will internally code efficient SQL to handle that.
 
Bartender
Posts: 2436
13
  • Number of slices to send:
    Optional 'thank-you' note:
Jack,
You may find a Spring Boot's @PatchMapping example from this public educational Github sample code:
https://github.com/springframeworkguru/spring-6-rest-mvc/blob/77-flyway-intit-script/src/main/java/guru/springframework/spring6restmvc/services/BeerServiceJPA.java
 
Jack Tauson
Ranch Hand
Posts: 417
  • Number of slices to send:
    Optional 'thank-you' note:
Thanks All. I'm using Hibernate Mapping  XML file stuff which is quite old and doesn't use any annotations so what I ended up doing is if a user selects something from the drop-down in the user interface, I am getting the data from the database table based on the user selection for that particular row using the primary key and populating it on the form fields. That satisfies the user as well as they see what they are going to modify and serves the purpose of not sending null from the user interface.
 
Tim Holloway
Saloon Keeper
Posts: 27868
196
  • Number of slices to send:
    Optional 'thank-you' note:
I recommend that you budget some resources towards modernization before that breaks. Software does NOT "live forever", despite what Management thinks. It rots primarily from the outside in as hardware, operating systems, and ultimately language environments and support libraries change around it. Those changes not only add up, they snowball. It's known as "technical debt" and just because it's not the kind of debt that a Bean Counter can put on a spreadsheet doesn't mean it's not very, very expensive.

The fact that you're using XML files makes me fairly certain that you are using Legacy Hibernate. Hibernate is presently available in 2 forms: legacy form, and Java Persistence Architecture (JPA) form. Someday the legacy form is no longer going to be supported and even now, the number of experts in it is fairly low.

JPA, on the other hand, is part of the JEE EJB3 specification and you can expect much better support over a longer period. It is relatively easy to convert from legacy Hibernate to JPA Hibernate, but the sooner done, the easier/cheaper it will be. JPA, incidentally, was shaped in large part by people from the Hibernate team, which is one reason why it's fairly simple to convert.

Incidentally, the XML files still work, although you will probably see differences between the Legacy and JPA Hibernate XML formats. It's better to use annotations, though, as it reduces the number and complexity of XML files. The XML is then used to override the annotations when special needs arise.
 
Jack Tauson
Ranch Hand
Posts: 417
  • Number of slices to send:
    Optional 'thank-you' note:

Tim Holloway wrote:I recommend that you budget some resources towards modernization before that breaks. Software does NOT "live forever", despite what Management thinks. It rots primarily from the outside in as hardware, operating systems, and ultimately language environments and support libraries change around it. Those changes not only add up, they snowball. It's known as "technical debt" and just because it's not the kind of debt that a Bean Counter can put on a spreadsheet doesn't mean it's not very, very expensive.

The fact that you're using XML files makes me fairly certain that you are using Legacy Hibernate. Hibernate is presently available in 2 forms: legacy form, and Java Persistence Architecture (JPA) form. Someday the legacy form is no longer going to be supported and even now, the number of experts in it is fairly low.

JPA, on the other hand, is part of the JEE EJB3 specification and you can expect much better support over a longer period. It is relatively easy to convert from legacy Hibernate to JPA Hibernate, but the sooner done, the easier/cheaper it will be. JPA, incidentally, was shaped in large part by people from the Hibernate team, which is one reason why it's fairly simple to convert.

Incidentally, the XML files still work, although you will probably see differences between the Legacy and JPA Hibernate XML formats. It's better to use annotations, though, as it reduces the number and complexity of XML files. The XML is then used to override the annotations when special needs arise.



Yeah, I completely agree and would definitely want to move towards JPA direction rather than using Legacy Hibernate.
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic
vceplus-200-125    | boson-200-125    | training-cissp    | actualtests-cissp    | techexams-cissp    | gratisexams-300-075    | pearsonitcertification-210-260    | examsboost-210-260    | examsforall-210-260    | dumps4free-210-260    | reddit-210-260    | cisexams-352-001    | itexamfox-352-001    | passguaranteed-352-001    | passeasily-352-001    | freeccnastudyguide-200-120    | gocertify-200-120    | passcerty-200-120    | certifyguide-70-980    | dumpscollection-70-980    | examcollection-70-534    | cbtnuggets-210-065    | examfiles-400-051    | passitdump-400-051    | pearsonitcertification-70-462    | anderseide-70-347    | thomas-70-533    | research-1V0-605    | topix-102-400    | certdepot-EX200    | pearsonit-640-916    | itproguru-70-533    | reddit-100-105    | channel9-70-346    | anderseide-70-346    | theiia-IIA-CIA-PART3    | certificationHP-hp0-s41    | pearsonitcertification-640-916    | anderMicrosoft-70-534    | cathMicrosoft-70-462    | examcollection-cca-500    | techexams-gcih    | mslearn-70-346    | measureup-70-486    | pass4sure-hp0-s41    | iiba-640-916    | itsecurity-sscp    | cbtnuggets-300-320    | blogged-70-486    | pass4sure-IIA-CIA-PART1    | cbtnuggets-100-101    | developerhandbook-70-486    | lpicisco-101    | mylearn-1V0-605    | tomsitpro-cism    | gnosis-101    | channel9Mic-70-534    | ipass-IIA-CIA-PART1    | forcerts-70-417    | tests-sy0-401    | ipasstheciaexam-IIA-CIA-PART3    | mostcisco-300-135    | buildazure-70-533    | cloudera-cca-500    | pdf4cert-2v0-621    | f5cisco-101    | gocertify-1z0-062    | quora-640-916    | micrcosoft-70-480    | brain2pass-70-417    | examcompass-sy0-401    | global-EX200    | iassc-ICGB    | vceplus-300-115    | quizlet-810-403    | cbtnuggets-70-697    | educationOracle-1Z0-434    | channel9-70-534    | officialcerts-400-051    | examsboost-IIA-CIA-PART1    | networktut-300-135    | teststarter-300-206    | pluralsight-70-486    | coding-70-486    | freeccna-100-101    | digitaltut-300-101    | iiba-CBAP    | virtuallymikebrown-640-916    | isaca-cism    | whizlabs-pmp    | techexams-70-980    | ciscopress-300-115    | techtarget-cism    | pearsonitcertification-300-070    | testking-2v0-621    | isacaNew-cism    | simplilearn-pmi-rmp    | simplilearn-pmp    | educationOracle-1z0-809    | education-1z0-809    | teachertube-1Z0-434    | villanovau-CBAP    | quora-300-206    | certifyguide-300-208    | cbtnuggets-100-105    | flydumps-70-417    | gratisexams-1V0-605    | ituonline-1z0-062    | techexams-cas-002    | simplilearn-70-534    | pluralsight-70-697    | theiia-IIA-CIA-PART1    | itexamtips-400-051    | pearsonitcertification-EX200    | pluralsight-70-480    | learn-hp0-s42    | giac-gpen    | mindhub-102-400    | coursesmsu-CBAP    | examsforall-2v0-621    | developerhandbook-70-487    | root-EX200    | coderanch-1z0-809    | getfreedumps-1z0-062    | comptia-cas-002    | quora-1z0-809    | boson-300-135    | killtest-2v0-621    | learncia-IIA-CIA-PART3    | computer-gcih    | universitycloudera-cca-500    | itexamrun-70-410    | certificationHPv2-hp0-s41    | certskills-100-105    | skipitnow-70-417    | gocertify-sy0-401    | prep4sure-70-417    | simplilearn-cisa    |
http://www.pmsas.pr.gov.br/wp-content/    | http://www.pmsas.pr.gov.br/wp-content/    |