最近看了一本关于hibernate开发的书.自己尝试了一下.
hibernate middlegen-hibernate hibernate-extentions ant http://ant.apache.org jdbc for sqlserver2000 【程序编程相关:关于本人的blog】1.首先准备环境,以下hibernate及其插件的下载地址http://prdownloads.sourceforge.net/hibernate/?sort_by=date&sort=desc 【推荐阅读:成为软件高手的几个忌讳(转贴)】
pojo 【扩展信息:一个程序员的成长的六个阶段(转帖)】2.hibernate基础代码包括
pojo在hibernate里应该理解成数据库表所对应的domain object.pojo就是“plain ordinary java object“ 无格式的普通java对象.可以理解为不包含逻辑代码的值对象(value object) public class tuser implements serializable{ private string name;public user(string name)
{ this.name = name; }/** default constructor */
public user() { }public string getname()
{ return this.name; }... 下一页