首页 > 代码库 > 3.struts2访问Servlet API,并和mybaits实现全套增删改查

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

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      NUMBER12 )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.jar10 11 mybatis-3.2.3.jar12 13 ognl-2.7.3.jar14 15 ojdbc14.jar16 17 struts2-core-2.1.8.1.jar18 19 xwork-core-2.1.6.jar
lib下的jar文件

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

4.

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