资源简介
主要使用JSP作为开发语言,后台使用SqlServer作为数据库管理系统,开发环境是MyEclipse,服务器采用tomcat,开发出的一个基于Web技术的B/S结构的考试管理系统 三用户,管理员,老师,学生
代码片段和文件信息
package com.dao;
import java.util.List;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.hibernate.LockMode;
import org.springframework.context.ApplicationContext;
import org.springframework.orm.hibernate3.support.HibernateDaoSupport;
import com.model.TAdmin;
/**
* Data access object (DAO) for domain model class TAdmin.
*
* @see com.model.TAdmin
* @author MyEclipse Persistence Tools
*/
public class TAdminDAO extends HibernateDaoSupport {
private static final Log log = LogFactory.getLog(TAdminDAO.class);
// property constants
public static final String USER_NAME = “userName“;
public static final String USER_PW = “userPw“;
protected void initDao() {
// do nothing
}
public void save(TAdmin transientInstance) {
log.debug(“saving TAdmin instance“);
try {
getHibernateTemplate().save(transientInstance);
log.debug(“save successful“);
} catch (RuntimeException re) {
log.error(“save failed“ re);
throw re;
}
}
public void delete(TAdmin persistentInstance) {
log.debug(“deleting TAdmin instance“);
try {
getHibernateTemplate().delete(persistentInstance);
log.debug(“delete successful“);
} catch (RuntimeException re) {
log.error(“delete failed“ re);
throw re;
}
}
public TAdmin findById(java.lang.Integer id) {
log.debug(“getting TAdmin instance with id: “ + id);
try {
TAdmin instance = (TAdmin) getHibernateTemplate().get(
“com.model.TAdmin“ id);
return instance;
} catch (RuntimeException re) {
log.error(“get failed“ re);
throw re;
}
}
public List findByExample(TAdmin instance) {
log.debug(“finding TAdmin instance by example“);
try {
List results = getHibernateTemplate().findByExample(instance);
log.debug(“find by example successful result size: “
+ results.size());
return results;
} catch (RuntimeException re) {
log.error(“find by example failed“ re);
throw re;
}
}
public List findByProperty(String propertyName object value) {
log.debug(“finding TAdmin instance with property: “ + propertyName
+ “ value: “ + value);
try {
String queryString = “from TAdmin as model where model.“
+ propertyName + “= ?“;
return getHibernateTemplate().find(queryString value);
} catch (RuntimeException re) {
log.error(“find by property name failed“ re);
throw re;
}
}
public List findByUserName(object userName) {
return findByProperty(USER_NAME userName);
}
public List findByUserPw(object userPw) {
return findByProperty(USER_PW userPw);
}
public List findAll() {
log.debug(“finding all TAdmin instances“);
try {
String queryString = “from TAdmin“;
return getHibernateTemplate().find(queryString);
} catch (RuntimeException re) {
log.error(“find all failed“ re);
throw re;
}
}
public TAdmin merge(TAdmin detachedInstance) {
log.debug(“
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1048576 2012-06-06 06:08 176JSP网上考试系统\db_exam_Data.MDF
文件 1048576 2012-06-05 14:43 176JSP网上考试系统\db_exam_Log.LDF
文件 5186 2012-06-10 10:48 176JSP网上考试系统\exam\.classpath
文件 527 2012-06-08 22:35 176JSP网上考试系统\exam\.myhibernatedata
文件 285 2012-06-03 16:52 176JSP网上考试系统\exam\.myme
文件 1632 2012-06-08 20:19 176JSP网上考试系统\exam\.project
文件 330 2012-06-01 23:48 176JSP网上考试系统\exam\.settings\org.eclipse.jdt.core.prefs
文件 273 2012-06-09 21:58 176JSP网上考试系统\exam\.springBeans
文件 3980 2012-06-09 22:34 176JSP网上考试系统\exam\src\com\dao\TAdminDAO.java
文件 4085 2012-06-08 13:47 176JSP网上考试系统\exam\src\com\dao\TFenshuDAO.java
文件 4297 2012-06-03 06:58 176JSP网上考试系统\exam\src\com\dao\TJiaoyuanDAO.java
文件 4505 2012-06-02 08:22 176JSP网上考试系统\exam\src\com\dao\TKechengDAO.java
文件 4229 2012-06-09 01:29 176JSP网上考试系统\exam\src\com\dao\TShitiDAO.java
文件 782 2012-06-04 22:05 176JSP网上考试系统\exam\src\com\model\TAdmin.hbm.xm
文件 914 2012-06-06 09:08 176JSP网上考试系统\exam\src\com\model\TFenshu.hbm.xm
文件 1057 2012-06-06 00:24 176JSP网上考试系统\exam\src\com\model\TJiaoyuan.hbm.xm
文件 1100 2012-06-08 11:01 176JSP网上考试系统\exam\src\com\model\TKecheng.hbm.xm
文件 1099 2012-06-03 02:20 176JSP网上考试系统\exam\src\com\model\TShiti.hbm.xm
文件 1728 2012-06-05 19:35 176JSP网上考试系统\exam\src\com\model\TStu.hbm.xm
文件 1444 2012-06-01 23:12 176JSP网上考试系统\exam\src\com\model\TTea.hbm.xm
文件 1924 2012-06-04 03:24 176JSP网上考试系统\exam\src\com\model\TTimu.hbm.xm
文件 759 2012-06-06 23:17 176JSP网上考试系统\exam\src\com\model\TTimuShiti.hbm.xm
文件 6048 2012-06-05 16:58 176JSP网上考试系统\exam\src\com\service\loginService.java
文件 2451 2012-06-10 21:38 176JSP网上考试系统\exam\src\com\util\Pagination.java
文件 1300 2012-06-10 00:43 176JSP网上考试系统\exam\src\com\util\safeFileter.java
文件 2534 2012-06-06 20:04 176JSP网上考试系统\exam\src\com\util\Util.java
文件 1589 2012-06-02 11:22 176JSP网上考试系统\exam\src\log4j.properties
文件 0 2012-06-07 15:21 176JSP网上考试系统\exam\src\messages_en_US.properties
文件 8 2012-06-07 13:59 176JSP网上考试系统\exam\src\messages_zh_CN.properties
文件 3526 2012-06-10 02:14 176JSP网上考试系统\exam\src\struts.properties
............此处省略1126个文件信息
- 上一篇:Java课程设计酒店管理系统+报告文档
- 下一篇:JAVA JSP车辆管理系统
相关资源
- Java的web在线考试系统设计(含源码
- java标准化考试系统
- JAVA EE网上考试系统
- javase项目:学生在线考试系统
- 基于java web简单的学生考试系统+mysq
- Android项目源码基于Bmob的简单学生考试
- 基于Java的在线考试系统266258
- Java单机考试系统 基于swing
- JAVA 英语在线考试系统源码+SQL2005数据
- jsp+mysql在线考试系统+文档
- 基于JAVA的在线考试系统 可做毕业设计
- 在线考试系统需求规格说明书
- 基于JavaEE技术的在线考试系统的设计
- 基于Jsp网络在线考试系统源码
- Jsp网络在线考试系统源码分享
- 基于android模拟考试系统源代码
- 基于java SSH的在线考试系统源代码
- 用于毕设的Java无纸化在线考试系统
- jsp在线考试系统217958
- 在线考试系统,oracle,jsp
- MVC模式_jsp+javabean+servlet开发“在线考
- Java Web 网络在线考试系统源码
- JavaWeb在线考试系统200891
- jsp+sql 在线考试系统
- 基于java swing的考试系统的课程设计
- 一个简单的基于jsp的在线考试系统
- 基于JSP的驾校考试系统
- 学生考试系统(CS模型)源码加安装指
- 学生自测练习考试系统毕业设计jspS
- 在线考试系统,JSP+TOMCAT+JAVABEAN+JQUER
评论
共有 条评论