码迷,mamicode.com
首页 > Windows程序 > 详细

3.struts2访问Servlet API,并和mybaits实现全套增删改查

时间:2016-08-30 13:27:25      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:

1.创建数据库脚本userinfo.sql

技术分享
 1 prompt PL/SQL Developer import file
 2 prompt Created on 2016年5月19日 by pc
 3 set feedback off
 4 set define off
 5 
 6 create table USERINFO
 7 (
 8   id       NUMBER not null,
 9   uname    VARCHAR2(20),
10   password VARCHAR2(20),
11   age      NUMBER
12 )
13 ;
14 alter table USERINFO add primary key (ID);
15 
16 
17 insert into USERINFO (id, uname, password, age)
18 values (1, holly, 123, 18);
19 insert into USERINFO (id, uname, password, age)
20 values (2, 石头, 123, 18);
21 insert into USERINFO (id, uname, password, age)
22 values (3, 朱亚楠, 123, 18);
23 insert into USERINFO (id, uname, password, age)
24 values (22, 大嘴, 123, null);
25 commit;
userinfo.sql

2.创建项目Struts2_Part2_MyBatis_C1并在WebRoot下的WEB-INF下的lib包下添加如下jar文件

技术分享
 1 cglib-nodep-2.1_3.jar
 2 
 3 commons-fileupload-1.2.1.jar
 4 
 5 commons-io-1.3.2.jar
 6 
 7 freemarker-2.3.15.jar
 8 
 9 log4j-1.2.17.jar
10 
11 mybatis-3.2.3.jar
12 
13 ognl-2.7.3.jar
14 
15 ojdbc14.jar
16 
17 struts2-core-2.1.8.1.jar
18 
19 xwork-core-2.1.6.jar
lib下的jar文件

3.在WebRoot下的创建爱js文件夹,并添加jquery-1.8.3.js文件

4.

3.struts2访问Servlet API,并和mybaits实现全套增删改查

标签:

原文地址:http://www.cnblogs.com/holly8/p/5821521.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!