Hibernate
夏了夏天c
这个作者很懒,什么都没留下…
展开
-
Could not parse configuration: /hibernate.cfg.xml
在使用hibernate时,报了 Could not parse configuration: /hibernate.cfg.xml 这很有可能是hibernate.cfg.xml文件出错。这时我们可以利用火狐浏览器打开hibernate.cfg.xml ,它会告诉你哪里出错:火狐浏览器这一点挺好用的,大家可以试试~原创 2013-06-03 16:44:29 · 1268 阅读 · 0 评论 -
使用Hibernate向mysql数据库中插入中文,数据库中显示??乱码
解决办法很简单: 在hibernate.cfg.xml文件中这样修改: jdbc:mysql://localhost/blog? useUnicode=true&characterEncoding=utf8注意:jdbc:mysql://localhost/blo原创 2013-06-03 17:38:17 · 1048 阅读 · 0 评论 -
Incorrect string value: '\xE4\xB8\xAD\xE7\xBA\xA7' for column 'title' at row 1
运行hibernate,向数据库插入中文时出现错误:Incorrect string value: '\xE4\xB8\xAD\xE7\xBA\xA7' for column 'title' at row 1原因是数据库表中title字段的字符集设定错误,一般改为utf8_general_ci就可以了。原创 2013-06-03 21:38:19 · 5743 阅读 · 0 评论 -
关于hibernate.hbm2ddl.auto 属性
当我们的hibernate.cfg.xml文件中存在:create 时,每次运行java文件时,数据库里面相应的表都会重建,这时数据库表的什么id的自增性,字符集的设置之类的都会还原为默认的,这一点大家要注意。原创 2013-06-03 21:49:12 · 937 阅读 · 0 评论 -
报这个错误的原因:No identifier specified for entity:
在使用hibernate annotation时出错了原因:pojo实体bean缺少了主键解决办法:在pojo类上检查@Id有没有写在get方法上原创 2013-07-20 16:13:53 · 8514 阅读 · 0 评论 -
org.hibernate.QueryException: Expected positional parameter count: 2, actual parameters: [] [from Us
错误:org.hibernate.QueryException: Expected positional parameter count: 2, actual parameters: [] [from User where username = ? and password = ?]我出错的代码是: Query q = se原创 2013-07-20 22:07:38 · 6627 阅读 · 0 评论 -
eclipse搭建Log4J日志环境
在hibernate使用的日志标准都为slf,slf可以看作为它的接口,因此需要找到它的实例,为我们做日志。我们选择使用log4j为实例。1、 为防止冲突,先将slf4j-nop的jar包(它也是slf的一个实例)去除2、 加入log4j的jar包。3、 加入转换包 slf4j-log4j 4、 src下加入log4j.properties 配置文件最原创 2013-07-25 12:45:41 · 1690 阅读 · 0 评论