
item07 学员
chaoyv
这个作者很懒,什么都没留下…
展开
-
S2H sql+entity+dao+biz
sql 语句 --创建用户及授权 CREATE USER stuDB IDENTIFIED BY 123456; GRANT CONNECT,RESOURCE to stuDB; --drop user stuDB cascade --班级信息表 create table classes( id number(10) primary key not nul...原创 2014-12-10 03:04:03 · 118 阅读 · 0 评论 -
S2H hibernate.cfg.xml+web.xml+util
hibernate.cfg.xml 配置 <?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://hiber...原创 2014-12-10 03:07:15 · 111 阅读 · 0 评论 -
S2H action+struts.xml+jsp
StudentAction 控制器 package cn.action; import java.util.ArrayList; import java.util.List; import cn.biz.StudentBiz; import cn.biz.impl.StudentBizImpl; import cn.entity.Classes; import cn.entity...原创 2014-12-10 03:11:44 · 135 阅读 · 0 评论 -
S2H sql+entity+dao+biz
mber(10) primary key not null,--班级编号 cname varchar2(30) not null--班级名称 ) --学生信息表 create table student( id number(10) primary key not null,--学员编号 sname varchar2(30) not null,--学员姓名 birthday date not null,--生日 ge原创 2014-12-10 03:04:03 · 93 阅读 · 0 评论 -
S2H hibernate.cfg.xml+web.xml+util
ibernate.sourceforge.net/hibernate-configuration-3.0.dtd"> <!-- Generated by MyEclipse Hibernate Tools. --> <hibernate-configuration> <session-factory> <!-- 数据库URL --&g原创 2014-12-10 03:07:15 · 97 阅读 · 0 评论 -
S2H action+struts.xml+jsp
entity.Student; import com.opensymphony.xwork2.ActionSupport; /** * 学生 控制器 * */ @SuppressWarnings("serial") public class StudentAction extends ActionSupport { private StudentBiz studentBiz = new StudentBizImpl(); private List<S原创 2014-12-10 03:11:44 · 104 阅读 · 0 评论