MongoDB: Entity object (JavaBean) goto DBObject

Source: Internet
Author: User
Tags goto

The code is for practice only (reflection, generics):

 PackageUtils;ImportJava.lang.reflect.Field;ImportCom.mongodb.BasicDBObject;ImportCom.mongodb.DBObject;ImportPojo. User; Public classBeanfromdbobject {/*** @Description: Bean-->dbobject *@paramBean *@returndbobject return type*/     Public Static<T>dbobject getdbobject (T Bean) {if(Bean = =NULL) {            return NULL; } dbobject obj=NewBasicdbobject (); field[] Field=Bean.getclass (). Getdeclaredfields ();  for(Field f:field) {String name=F.getname (); if(!f.isaccessible ()) {f.setaccessible (true); }            Try{Object OJ=F.get (Bean); if(OJ = =NULL) {obj.put (name,""); } Else if(OJinstanceofInteger) {                    intValue =((Integer) OJ). Intvalue ();                Obj.put (name, value); } Else if(OJinstanceofDouble) {Double value=((Double) OJ). Doublevalue ();                Obj.put (name, value); } Else if(OJinstanceofFloat) {Float value=((Float) OJ). Floatvalue ();                Obj.put (name, value); } Else if(OJinstanceofBoolean) {Boolean value=((Boolean) OJ). Booleanvalue ();                Obj.put (name, value); } Else if(OJinstanceofLong) {Long value=((Long) OJ). Longvalue ();                Obj.put (name, value); } Else{obj.put (name, OJ); }            } Catch(Exception e) {e.printstacktrace (); }        }        returnobj; }}

MongoDB: Entity object (JavaBean) goto DBObject

Related Article

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.