hibernate.cfg.xml理解
/** 1.方言:hql是官方语言,但是hql的东西总要和地方打交道(数据库),不同的数据库语言是不一样的,所以需要制定我们的地方语言(方言)是哪个。。。 2。在控制台打印hql语句,开发时候当然要用 3。hbm2ddl---hibernate mapping to data define language 意思是:你要不要hibernate自动帮你生成建表语句 4。去哪里找对应的配置文件 4.1 这个因为是resource,说明有源文件,说明源文件是自己写的 4.2 说明这个没有源文件,是查找class的注解。。。。 所以在单元测试的时候第一种情况 要用Configrration 第二种情况要用 AnnotationConfiguration */ 1。 <!-- SQL dialect --> <property name="dialect">org.hibernate.dialect.HSQLDialect</property> 2。 <!-- Echo all executed SQL to stdout --> <property name="show_sql">true</property> 3。 <!-- Drop and re-create the database schema on startup --> <property name="hbm2ddl.auto">create</property> 4。 4.1<mapping resource="events/Event.hbm.xml"/> 4.2<mapping class="events.Event.hbm.xml"/>
相关推荐
Youda 2020-08-29
thunderstorm 2020-08-19
nan00zzu 2020-08-08
liuyang000 2020-06-26
jacklife 2020-06-25
goodriver 2020-06-17
Ida 2020-06-17
liuyang000 2020-06-12
CharlesYooSky 2020-06-11
bluet00 2020-06-01
gallon00 2020-10-16
ItBJLan 2020-06-28
msmysql 2020-06-26
xuanlvhaoshao 2020-06-16
IBMRational 2020-06-14
godfather 2020-06-13
godfather 2020-06-03
chenjiazhu 2020-06-01