org.hibernate.hql.internal.ast.QuerySyntaxException: unexpected token: * near line 1, column 8 [sele

错误信息如下:

org.hibernate.hql.internal.ast.QuerySyntaxException: unexpected token: * near line 1, column 8 [sele_第1张图片


背景:Spring+HIbernate+Struts2整合对数据库的增删改查


错误代码如下:

public String select_info() {
		// 1.根据传递过的id查询整条数据
		Session session = getSession();
		String sql = "select * from Goods where goodnum=?";
		Query query = session.createQuery(sql);
		query.setLong(0, id);
		Goods good = (Goods) query.uniqueResult();
		// 1.使用Hibernate操作数据库
		// 1.1使用当前线程绑定的session
		goods = good;
		return "goodsinfo";
	}

解决方案:

提示这个查询语句有问题select * from cn.com.bean.Goods where goodnum='1'

1、select * from 实体类名 where 实体类中的属性名=?;

而不是 select * from 表名 where 列名=?

2、如果前面是select * 的话,

方法一、把session.createQuery(sql);改成session.createSQLQuerysql);

方法二、去掉select *

原因:select *是底层sql语句的语法


正确代码:

我选择的是去掉select *

public String select_info() {
		// 1.根据传递过的id查询整条数据
		Session session = getSession();
		String sql = "from Goods where goodnum = ?";
		Query query = session.createQuery(sql);
		query.setLong(0, id);
		System.out.println("sql:"+sql);
		Goods good = (Goods) query.uniqueResult();
		// 1.使用Hibernate操作数据库
		// 1.1使用当前线程绑定的session
		goods = good;
		return "goodsinfo";
	}

 

你可能感兴趣的:(三大框架整合)