NULL pointer for hibernate unit test

Source: Internet
Author: User

 

View code

 1   Public   Class  Hibernatecoreapitest {  2   Private   Static  Sessionfactory;  3       4   @ Beforeclass  5       Public   Static  Void  Beforeclass (){  6 Sessionfactory = New  Annotationconfiguration (). Configure (). buildsessionfactory ();  7   }  8   @ Afterclass  9       Public   Static   Void  Afterclass (){  10  Sessionfactory. Close ();  11   }  12       13   @ Test  14       Public   Void  Testgetstudent (){  15 Session session = Sessionfactory. getcurrentsession ();  16   Session. begintransaction ();  17 Student s = (student) Session. Get (student. Class , 1 );  18 S. setname ("XML" );  19   Session. gettransaction (). Commit ();  20   }  21 }

In this case, it will never work. In main

 
Public static void main (string [] ARGs) {beforeclass (); afterclass ();}

This can be found out.

Previously written

<Mapping class = "com/test/hibernate/model/student. HBM. xml"/>
<Mapping class = "com. Test. hibernate. model. Teacher"/>

Correct writing

XML: <MappingResource= "Com/test/hibernate/model/student. HBM. xml"/>
Note: <MappingClass= "Com. Test. hibernate. model. Teacher"/>

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.