
Hibernate
iteye_9108
这个作者很懒,什么都没留下…
展开
-
Mapped Statements collection does not contain value for
http://your233.iteye.com/blog/1563240mybatis出现错误:Mapped Statements collection does not contain value for后面是什么类什么方法之类的: 错误原因有几种: 1、mapper.xml中没有加入namespace 2、mapper.xml中的方法和接口mapper的方法不对应 3、mapper...原创 2013-10-29 17:52:33 · 117 阅读 · 0 评论 -
Hibernate连接mysql数据库配置文件
<!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"><hibernate-configura...2012-12-21 14:04:39 · 192 阅读 · 0 评论 -
HQL 模糊查询
public List<GeoInfo> selectByLike(String name){ Session session = HbnUtil.getSession(); StringBuffer hql = new StringBuffer(); hql.append("from GeoInfo e where...2013-01-09 10:35:58 · 274 阅读 · 0 评论 -
org.hibernate.hql.ast.QuerySyntaxException
org.hibernate.hql.ast.QuerySyntaxException: Onu is not mapped [from Onu o where o.instanceid =10] 1、就是你的from是实体类而不是表名 2、hibernate配置文件中没有加入相应的映射文件<mapping resource=" " />...2013-01-24 18:24:30 · 123 阅读 · 0 评论 -
Hibernate执行sql语句,输出结果
String sql = "select olt.olt_name,olt.longitude,olt.latitude"+//,olt.longitude,olt.latitude " from nms_res.olt"+ " where olt.instanceid=2 ...2013-01-26 17:22:55 · 420 阅读 · 0 评论