首页>代码>ssh整合extjs的项目实例>/TabpanelProject/src/com/inspur/dao/impl/UserDaoImpl.java
package com.inspur.dao.impl;

import java.util.List;
import javax.annotation.Resource;
import org.springframework.orm.hibernate3.HibernateTemplate;
import org.springframework.stereotype.Component;
import com.inspur.dao.UserDao;
import com.inspur.model.User;
@Component("userDao")
@SuppressWarnings("unchecked")
public class UserDaoImpl implements UserDao {
	private HibernateTemplate hibernateTemplate;

	public boolean login(User u) {
		String hql = "from User u where u.username='" + u.getUsername() + "'";
		boolean flag;
		List<User> list = hibernateTemplate.find(hql);
		String pass = "";
		if (!list.isEmpty()) {
			pass = list.get(0).getPassword();
			if (pass != null && pass.trim().equals(u.getPassword().trim()))
				flag = true;
			else
				flag = false;
		} else {
			flag = false;
		}
		return flag;
	}

	public HibernateTemplate getHibernateTemplate() {
		return hibernateTemplate;
	}

	@Resource
	public void setHibernateTemplate(HibernateTemplate hibernateTemplate) {
		this.hibernateTemplate = hibernateTemplate;
	}

}
最近下载更多
lironggang  LV38 2022年8月8日
3106001395  LV1 2021年12月19日
wangzile1994  LV12 2020年3月26日
newnu88  LV12 2020年2月17日
何秀好  LV13 2019年11月19日
wacxin  LV10 2019年6月25日
yrfoogd  LV5 2019年6月21日
_stary  LV1 2019年5月31日
wknyhu  LV2 2019年1月14日
chikin333  LV11 2018年11月27日
最近浏览更多
chongminzheng  LV1 7月13日
WBelong  LV8 2023年12月11日
微信网友_6549826556514304  LV2 2023年7月6日
18103847055  LV7 2023年4月25日
haoyi198  LV3 2023年1月11日
uni-code_0123  LV1 2022年11月16日
唐老鸭  LV26 2022年6月23日
getset  LV8 2022年4月17日
3106001395  LV1 2021年12月19日
蛋黄派来的* 2021年12月7日
暂无贡献等级
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友