Develop a hibernate program using myeclipse

Source: Internet
Author: User

Driver configuration (MySQL ):
 

Create Table 'test'. 'user _ information '(
'Id' int default '0' not null,
'Username' varchar (32 ),
'Password' varchar (16 ),
'Age' int,
Primary Key ('id ')
);

Create unique index 'primary' on 'test'. 'user _ information' ('id ');

Modify: userinformation. HBM. xml

<ID name = "ID" type = "Java. Lang. Integer">
<Column name = "ID"/>
<Generator class = "increment"/>
</ID>

Test code:



Import org. hibernate. transaction;

Import hibernatedao. userinformation;
Import hibernatedao. userinformationdao;



Public class test ...{

/**//**
* @ Param ARGs
*/
Public static void main (string [] ARGs )...{

// Entity class
Userinformation user = new userinformation ();
User. setpassword ("pass ");
User. setusername ("username ");
User. setage (20 );

// Dao object
Userinformationdao Dao = new userinformationdao ();

// Start the transaction
Transaction trans = Dao. getsession (). begintransaction ();

Dao. Save (User );

Trans. Commit ();

// Java. util. List <userinformation> List = Dao. findall ();
//
// For (userinformation O: List)
//{
// System. Out. println (O. GetUserName ());
// System. Out. println (O. GetPassword ());
// System. Out. println (O. getage ());
//}
}

}


Test passed.

Reference URL:

Http://beansoft.java-cn.org/download/ssh_2_hibernate_spring.exe

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.