首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

Java 字符串变换为日期,hibernate配置文件<property name="hbm2ddl.auto">的含义

2012-12-25 
Java 字符串转换为日期,hibernate配置文件property namehbm2ddl.auto的含义1、字符串转换为日期函数??

Java 字符串转换为日期,hibernate配置文件<property name="hbm2ddl.auto">的含义

1、字符串转换为日期函数

?

?

public Date strToDate(String dateString,String formatter){Date d = null;if(null == dateString || null == formatter ||dateString.trim().length() <=0 || formatter.trim().length() <=0){return new Date();}SimpleDateFormat sdf = new SimpleDateFormat(formatter);try{d = sdf.parse(dateString);}catch(ParseException e){d = new Date();e.printStackTrace();}return  d;}

?

?

2、hibernate配置文件<property name="hbm2ddl.auto">的含义

? ? ? hibernate在创建时是否重建数据库的schema,数据库的schema实际上就是数据库里面的对象,包括表、视图...

? ? ??写道

Automatically validates or exports schema DDL to the database when the SessionFactory is created. With create-drop, the database schema will be dropped when the SessionFactory is closed explicitly.

?

?

? ?validate:当sessionFactory创建时,自动验证或者schema定义导入数据库。

? ?create:每次启动都drop掉原来的schema,创建新的。

? ?create-drop:当sessionFactory明确关闭时,drop掉schema。

? ?update(常用):如果没有schema就创建,有就更新。

热点排行