为了账号安全,请及时绑定邮箱和手机立即绑定

登陆进去提示500错误

http://img1.sycdn.imooc.com//58f51b43000157c618060740.jpg

HQL 代码敲完  然后执行查询的方法

package com.muke.dao.Impl;

import java.util.List;

import org.springframework.orm.hibernate3.support.HibernateDaoSupport;

import com.muke.dao.sshDao;
import com.muke.domain.User;

public class sshDaoImpl extends HibernateDaoSupport implements sshDao {
    
	@Override
	public boolean verify(User user) {
		String hql="from user where username= ? and pwd= ? ";
		 List<User> list=this.getHibernateTemplate().find(hql, user.getUsername(),user.getPwd());
		 if(list.size()>0){
			 return list.size()>0;
		 }else{
			 return false;
		 }
		 
	}

}


正在回答

3 回答

我的也是500错误,org.springframework.orm.hibernate3.HibernateQueryException: Expected positional parameter count: 2, actual parameters: [com.employee.entity.Employee@6350ed68] [from Department where username = ? and password = ?]; nested exception is org.hibernate.QueryException: Expected positional parameter count: 2, actual parameters: [com.employee.entity.Employee@6350ed68] [from Department where username = ? and password = ?],这是什么原因?

0 回复 有任何疑惑可以回复我~
#1

qq_知了_12

已解决
2017-06-21 回复 有任何疑惑可以回复我~

已经决解了原来  HQL 语句哪里的from 后面的不是表明 而是实体类类名

2 回复 有任何疑惑可以回复我~
#1

热爱学习的坏孩子

多谢多谢。我也是找错找不到,看了你的就弄成功了!
2018-03-29 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

登陆进去提示500错误

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信