在线考试系统,基于SSH框架。sql server 数据库服务器。完成了学生在线考试的一些功能
2022-04-26 10:44:58 28.43MB 在线考试系统 基于SSH框架 SQL 数据库
1
北大青鸟ACCP8.0Y2学期中的基于SSH框架的企业级应用开发完整版,分成了9个部分,这是第三部分,请下载
2022-04-09 16:39:13 210MB accp 8.0 SSH
1
项目技术和环境简介: Struts1.2、Hibernate3、Spring2.5、Ajax、Dwr、Oracle10g/sqlserver、Tomcat6.0、Junit、Log4j全新的客户关系管理系统!从需求分析和ER图形基本设计和入手直到编码和测试结束、包含一系列文档! 求有助于对项目整体开发过程的掌握和关键技术的熟悉!
2022-04-03 16:59:16 7.03MB SSH+Ajax
1
struts2 spring3 hibernate4
2022-04-02 15:57:33 19.9MB SSH框架
1
随着互联网技术的蓬勃发展,社区网站也随之而诞生。社区网站的出现为人们进行沟通和交友等娱乐活动带来了极大的便利。社区网站保留了现实生活社区中的诸多特性,并很好地结合了互联网技术,为用户提供了一个更好的互联网互动平台。本文以跑步爱好者和体育用品公司的实际应用需求为背景,构建了基于SSH框架的跑步社区网站。本网站主要是为爱好跑步的用户提供一个网上交流的平台,同时也为体育用品公司宣传所推出产品提供一个渠道。本网站提供了现实论坛所需的各种交流手段,并以服务广大跑步和运动用户为主,强调互动性、知识性、趣味性,是结交跑友,了解跑步信息,享受虚拟跑步运动的好去处。本文结合用户基本需求以及现有开发技术,对跑步社区网站的内容和功能进行了总体分析和设计。本文通过对跑步社区网站内容、布局等特点进行详细分析,设计了丰富、全面、新颖的跑步资讯平台和便捷的交流沟通渠道。同时,通过对跑步社区网站功能进行仔细研究,设计了跑步社区网站所具备的基本功能模块,具体包括:用户个人中心模块、跑步论坛模块、跑步装备库模块、专业跑步指南模块和后台管理系统模块。本文构建的跑步社区网站使用面向对象的程序设计方法(Java),利用数据库(Oracle 10g)设计以及SSH框架来开发高效率、高性能的Web应用程序。
2022-03-30 14:15:00 4.95MB 基于SSH框架的跑步社区网站的设
1
实现文件的上传,上传记录插入数据库(存放路径)
2022-03-29 16:07:56 21.68MB 文件上传
1
本项目是通过IDEA创建的SSH框架,适合初学者使用,本项目的创建过程详见文章:https://blog.csdn.net/sunxiaoju/article/details/81007709
2022-03-24 15:29:30 105.09MB SSH Struct Hibernate IDEA
1
Java技术及SSH框架和Jsp技术的介绍的全英文原文
2022-03-11 17:16:09 123KB ssh
1
前端技术:easyui,apache ocupload,highchart,apache poi 后端技术:java,maven,spring,struts2,hibernate,apache poi,shiro,quartz,highchart等
2022-02-28 14:43:01 91.22MB java maven spring hibernate
1
数据库创建代码: 1:用户表:(users) userid(主键),username(用户名),password(密码),sex(性别),head(头像),regdate(注册日期) 2:类别表:(types) tid(主键),type 3:技术表:(technic) teid(主键),tename(技术名),tsum(拥有帖子数量),tid(引用类别表主键) 4:帖子表:(card) cid(主键),title(标题),content(内容),outtime(发帖时间),uptime(修改帖子的时间),csum(回帖数量),tename(属于哪个技术), userid(引用用户表外键) 5:回帖表:(restore) rid(主键),rtitle(标题),rcontent(内容),routtime(发帖时间),ruptime(修改帖子的时间),tename(属于哪个技术), userid(引用用户表外键),cid(引用帖子表主键) --用户表:(users) -- Create table create table USERS ( USERID INTEGER not null, USERNAME VARCHAR2(20) not null, PASSWORD VARCHAR2(20) not null, SEX VARCHAR2(20) not null, HEAD VARCHAR2(20) not null, REGDATE DATE not null ) tablespace SYSTEM pctfree 10 pctused 40 initrans 1 maxtrans 255 storage ( initial 64K minextents 1 maxextents unlimited ); -- Create/Recreate primary, unique and foreign key constraints alter table USERS add constraint PK_USERID primary key (USERID) using index tablespace SYSTEM pctfree 10 initrans 2 maxtrans 255 storage ( initial 64K minextents 1 maxextents unlimited ); --类别表:(types) -- Create table create table TYPES ( TID INTEGER not null, TYPE VARCHAR2(20) not null ) tablespace SYSTEM pctfree 10 pctused 40 initrans 1 maxtrans 255 storage ( initial 64K minextents 1 maxextents unlimited ); -- Create/Recreate primary, unique and foreign key constraints alter table TYPES add constraint PK_TID primary key (TID) using index tablespace SYSTEM pctfree 10 initrans 2 maxtrans 255 storage ( initial 64K minextents 1 maxextents unlimited ); --技术表:(technic) -- Create table create table TECHNIC ( TEID INTEGER not null, TENAME VARCHAR2(20) not null, TSUM INTEGER not null, TID INTEGER not null ) tablespace SYSTEM pctfree 10 pctused 40 initrans 1 maxtrans 255 storage ( initial 64K minextents 1 maxextents unlimited ); -- Create/Recreate primary, unique and foreign key constraints alter table TECHNIC add constraint PK_TEID primary key (TEID) using index tablespace SYSTEM pctfree 10 initrans 2 maxtrans 255 storage ( initial 64K minextents 1 maxextents unlimited ); alter table TECHNIC add constraint FK_TID foreign key (TID) references TYPES (TID); --帖子表:(card) -- Create table create table CARD ( CID INTEGER not null, TITLE VARCHAR2(20) not null, CONTENT VARCHAR2(100) not null, OUTTIME DATE not null, UPTIME DATE not null, CSUM INTEGER not null, TENAME VARCHAR2(20) not null, USERID INTEGER ) tablespace SYSTEM pctfree 10 pctused 40 initrans 1 maxtrans 255 storage ( initial 64K minextents 1 maxextents unlimited ); -- Create/Recreate primary, unique and foreign key constraints alter table CARD add constraint PK_CID primary key (CID) using index tablespace SYSTEM pctfree 10 initrans 2 maxtrans 255 storage ( initial 64K minextents 1 maxextents unlimited ); alter table CARD add constraint FK_USERID foreign key (USERID) references USERS (USERID); --回帖表:(restore) -- Create table create table RESTORE ( RID INTEGER not null, RTITLE VARCHAR2(20) not null, RCONTENT VARCHAR2(100) not null, ROUTTIME DATE not null, RUPTIME DATE not null, TENAME VARCHAR2(20) not null, USERID INTEGER not null, CID INTEGER not null ) tablespace SYSTEM pctfree 10 pctused 40 initrans 1 maxtrans 255 storage ( initial 64K minextents 1 maxextents unlimited ); -- Create/Recreate primary, unique and foreign key constraints alter table RESTORE add constraint PK_RID primary key (RID) using index tablespace SYSTEM pctfree 10 initrans 2 maxtrans 255 storage ( initial 64K minextents 1 maxextents unlimited ); alter table RESTORE add constraint FK_CID foreign key (CID) references CARD (CID); alter table RESTORE add constraint FK_UID foreign key (USERID) references USERS (USERID); --序列号 -- Create sequence create sequence SEQ_CID minvalue 1 maxvalue 9999999999 start with 1 increment by 1 cache 20 order; --seq_userid -- Create sequence create sequence SEQ_USERID minvalue 1 maxvalue 9999991 start with 1 increment by 1 cache 20 order; --seq_tid -- Create sequence create sequence SEQ_TID minvalue 1 maxvalue 99999 start with 1 increment by 1 cache 20 order; --seq_teid -- Create sequence create sequence SEQ_TEID minvalue 1 maxvalue 999999 start with 1 increment by 1 cache 20 order; --seq_rid -- Create sequence create sequence SEQ_RID minvalue 1 maxvalue 99999 start with 1 increment by 1 cache 20 order;
2022-02-24 09:47:45 1.22MB bbs论坛
1