|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
用java开发web只要两本书:一本是关于java基础的,一本是关于jsp、servlet的就可以了。开发周期长,我就来讲句题外话,现在有很多思想都是通过java来展现。
在Hibernate中,能够间接对Blob、Clob作映照。
DDL以下:- 1.CREATETABLEuser(2.idINT(11)NOTNULLauto_incrementPRIMARYKEY,3.nameVARCHAR(100)NOTNULLdefault,4.ageINT,5.photoBLOB,6.resumeTEXT7.);
复制代码 注重:因为BLOB字段巨细不成估计,偶然必要增年夜BLOB字段的巨细,可在数据库中改用MEDIUMBLOB乃至LONGBLOB。
User.java- 1.packagecom.hb3.pack_07.model;2.3.importjava.sql.Blob;4.importjava.sql.Clob;5.
- 6.publicclassUser{7.
- 8.privateIntegerid;9.privateStringname;10.privateIntegerage;11.privateBlobphoto;12.privateClobresume;13.14.publicUser(){15.}16.
- 17.publicIntegergetId(){18.returnid;19.}20.publicvoidsetId(Integerid){21.this.id=id;22.}23.publicStringgetName(){24.returnname;25.}26.publicvoidsetName(Stringname){27.this.name=name;28.}29.publicIntegergetAge(){30.returnage;31.}32.publicvoidsetAge(Integerage){33.this.age=age;34.}35.publicBlobgetPhoto(){36.returnphoto;37.}38.publicvoidsetPhoto(Blobphoto){39.this.photo=photo;40.}41.publicClobgetResume(){42.returnresume;43.}44.publicvoidsetResume(Clobresume){45.this.resume=resume;46.}47.}
复制代码 <p>
IDE是好。java中的IDE更是百花齐放,你用jbuilder能说jbuilder赶不上vs吗?用eclipse,net网页编程beans也很舒服啊。我就不明白“稍微差一些”那一些是从哪里差来的。 |
|