摘要: Student stu=new Student();stu.setName(“SomeOne”);stu.setAge(18); 这里的stu和hibernate框架以及数据库完全没关系,程序运行时,它仅仅被放入内存,程序结束就消失 Student stu=new Student();stu.set 阅读全文
posted @ 2018-10-25 20:19 疯狂的橙子 阅读(81) 评论(0) 推荐(0) 编辑
摘要: 在 Hibernate 的配置文件 hibernate.cfg.xml 文件中,除了配置必要的数据源的属性和映射文件信息以外,我们还可以为 Hibernate 配置一些可选属性。 create:会根据映射文件(*.hbm.xml)来生成表,但是每次运行都会删除上一次的表, 重新生成表,哪怕 2 次没 阅读全文
posted @ 2018-10-25 20:18 疯狂的橙子 阅读(76) 评论(0) 推荐(0) 编辑
摘要: public static void main(String[] args) {Session session=HibernateSessionFactory.getSession(); Transaction tx=session.beginTransaction();try { Student 阅读全文
posted @ 2018-10-25 20:17 疯狂的橙子 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 到 hibernate 的官方网站去下载 hibernate 的 jar 包,地址为: http://www.hibernate.org/。 1 <DOCTYPE hibernate-configuration PUBLIC 2 "-//Hibernate/Hibernate Configurati 阅读全文
posted @ 2018-10-25 20:15 疯狂的橙子 阅读(94) 评论(0) 推荐(0) 编辑
摘要: 前言 在这里,我们将从0开始一步一步搭建Hadoop完全分布式环境并在eclipse上运行hadoop的"helloword"程序:worldcount 这一篇先说说完全分布式的环境搭建. 2.4以上3.0以下的版本参照搭建步骤通用。 转载请注明出处!本文地址:http://www.cnblogs. 阅读全文
posted @ 2016-07-07 02:01 疯狂的橙子 阅读(1656) 评论(3) 推荐(3) 编辑