Hibernate_Basic1

hibernate.cfg.xml:

1. hbm2ddl.auto-->create(自动建表)   update(自动更新表)  creaate-drop(关闭sessionFactory时,自动drop表)  validate(自动验证数据库的表和hbm配置文件是否对应)

 

2. hibernate使用slf4j来处理日志,但不常用。要转换为常用的log4j,需要加入log4j的jar包,同时还需要加入slf4j-log4jxx-xxx.jar包。这样只要在工程根目录下面建好log4j.properties文件就可以以log4j的形式管理日志。

 

3.

你可能感兴趣的:(Hibernate,xml,log4j,配置管理)