Null value was assigned to a property of primitive type setter

Source: Internet
Author: User

Exception:
Org. hibernate. propertyaccessexception: null value was assigned to a property of primitive type setter of COM. vtradex. swms. server. model. configuring. asn. cooling.pdf

 

The reason is that the database is null and is a new field.

 

<! -- Cooling fee -->
<Property name = "cooling.pdf" type = "double" column = "cooling_fee"/>

 

There are two solutions:

1. Add the default value to the database. You can add it manually here:

Update wms_asn a set a. coolingtasks = 0.0

2. Modify the double ing file and change the double type to the corresponding packaging class.

<! -- Cooling fee -->
<Property name = "cooling.pdf" type = "Java. Lang. Double" column = "cooling_ling"/>

 

In principle, the object design should be done without database design. During the design class, the class attributes should be set to the packaging class corresponding to the Java basic type to prevent errors when querying data.

Null value was assigned to a property of primitive type setter

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.