码迷,mamicode.com
首页 >  
搜索关键字:new_configuration    ( 109个结果
hadoop(五) - 分布式计算利器MapReduce加强
一. Partitioner是partitioner的基类,如果需要定制partitioner也需要继承该类。 public class DataCount { public static void main(String[] args) throws Exception { Configuration conf = new Configuration(); Job job =...
分类:其他好文   时间:2014-12-15 23:43:24    阅读次数:447
Hibernate SessionFactory的创建和session的获取
1,当我们调用Configuration config=new Configuration().configure();时候Hibernate会自动在当前的CLASSPATH中搜寻hibernate.cfg.xml文件并将其读取到内存作为后继操作的基础配置。我们也可以指定配置文件名,如果不希望使用默...
分类:Web程序   时间:2014-12-15 11:53:17    阅读次数:193
Hibernate学习---第二节:hibernate 增、删、改、查
1、增,向数据库中写入数据,代码如下: /** * 数据保存 * 1、save() * 2、persist() */ @Test private void testSave(){ Configuration config = new Configuration().configure(); /** ...
分类:Web程序   时间:2014-12-08 21:10:24    阅读次数:316
2014年12月8日-configuration类以及openSession和getCurrentSession的区别
Hibernate的configuration类:configuration类是用来加载hibernate配置文件的,默认的是读取hibernate.cfg.xml配置文件的信息。Configuration cfg = new Configuration().configure();//Confi....
分类:其他好文   时间:2014-12-08 17:10:19    阅读次数:138
FileSystem实例化过程
HDFS案例代码Configuration configuration = new Configuration();FileSystem fileSystem = FileSystem.get(new URI("hdfs://hadoop000:8020"), configuration); ...
分类:其他好文   时间:2014-11-29 18:56:03    阅读次数:310
Hive 查询在debug下报错
/** A new configuration where the behavior of reading from the default * resources can be turned off. * * If the parameter {@code loadDefaults} is false, the new instance * will no...
分类:其他好文   时间:2014-11-23 16:10:02    阅读次数:186
The dialect was not set. Set the property hibernate.dialect
loadhibernate.cfg.xml出现了问题获取配置信息代码应该这样写Configuration conf = new Configuration().configure();2009.8.31 更新.An AnnotationConfiguration instance is requir...
分类:Web程序   时间:2014-11-14 12:09:18    阅读次数:114
使用代码配置 NHibernate
多数情况下 NHibernate 使用配置文件进行配置, 但是我们也可以使用代码进行配置, 步骤如下:1、 创建一个 Configurationusing Nhibernate.cfg;var config = new Configuration() .SetProperty("connect...
分类:Web程序   时间:2014-10-31 18:35:08    阅读次数:196
Hibernate配置文件笔记
public  class Demo{ Configuration config=new Configuration().configure(); Hibernate4之前的写法,是与应用程序的生命周期一致,并为每个应用程序服务(在多个线程之间共 享))--> SessionFactory factory=config.buildSessio...
分类:Web程序   时间:2014-10-24 19:00:01    阅读次数:256
hibernate配置jndi
tomcat里的conf->context.xmlhibernate.cfg.xml java:comp/env/mysql org.hibernate.dialect.MySQLDialect 使用Configuration cf=new Configuration(...
分类:Web程序   时间:2014-10-20 23:10:36    阅读次数:167
109条   上一页 1 ... 8 9 10 11 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!