
item09 出版
chaoyv
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
SSH sql+entity+dao+biz+test
SQL 语句 create user standDB identified by 123456; grant connect,resource to standDB; -- Oracle 删除用户 --drop user standDB cascade; --标准信息表 create table standards ( std_id number(10) pr...原创 2015-01-12 01:19:41 · 198 阅读 · 0 评论 -
SSH web.xml+applicationContext.xml
web.xml 配置 <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com原创 2015-01-12 01:21:34 · 133 阅读 · 0 评论 -
SSH action+struts.xml+jsp
StandardsAction 控制类 package cn.action; import java.util.List; import cn.biz.StandardsBiz; import cn.entity.Standards; import com.opensymphony.xwork2.ActionSupport; @SuppressWarnings("serial") ...原创 2015-01-12 01:26:29 · 170 阅读 · 0 评论 -
SSH sql+entity+dao+biz+test
std_id number(10) primary key not null,--标准 id std_num varchar2(50) not null,--标准号 zhname varchar2(40) not null,--中文名称 std_version varchar2(10) not null,--版本 keys varchar2(50) not null,--关键字/词 release_date date nul原创 2015-01-12 01:19:41 · 194 阅读 · 0 评论 -
SSH web.xml+applicationContext.xml
com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="3.0"> <display-name>StuSystem</display-name&原创 2015-01-12 01:21:34 · 130 阅读 · 0 评论 -
SSH action+struts.xml+jsp
ial") public class StandardsAction extends ActionSupport { private StandardsBiz standardsBiz; private List<Standards> standards; private Standards standard; private int pageIndex; private int pagecount; private Integer stdId原创 2015-01-12 01:26:29 · 142 阅读 · 0 评论