• 大小: 18.73MB
    文件类型: .rar
    金币: 2
    下载: 0 次
    发布日期: 2024-01-30
  • 语言: Java
  • 标签: 考试系统  

资源简介

主要使用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\.mymetadata

     文件       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.xml

     文件        914  2012-06-06 09:08  176JSP网上考试系统\exam\src\com\model\TFenshu.hbm.xml

     文件       1057  2012-06-06 00:24  176JSP网上考试系统\exam\src\com\model\TJiaoyuan.hbm.xml

     文件       1100  2012-06-08 11:01  176JSP网上考试系统\exam\src\com\model\TKecheng.hbm.xml

     文件       1099  2012-06-03 02:20  176JSP网上考试系统\exam\src\com\model\TShiti.hbm.xml

     文件       1728  2012-06-05 19:35  176JSP网上考试系统\exam\src\com\model\TStu.hbm.xml

     文件       1444  2012-06-01 23:12  176JSP网上考试系统\exam\src\com\model\TTea.hbm.xml

     文件       1924  2012-06-04 03:24  176JSP网上考试系统\exam\src\com\model\TTimu.hbm.xml

     文件        759  2012-06-06 23:17  176JSP网上考试系统\exam\src\com\model\TTimuShiti.hbm.xml

     文件       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个文件信息

评论

共有 条评论