文件名称:testsession

  • 所属分类:
  • JSP源码/Java
  • 资源属性:
  • [Java] [源码]
  • 上传时间:
  • 2012-11-26
  • 文件大小:
  • 268kb
  • 下载次数:
  • 0次
  • 提 供 者:
  • 相关连接:
  • 下载说明:
  • 别用迅雷下载,失败请重下,重下不扣分!

介绍说明--下载内容均来自于网络,请自行研究使用

实现基本的购物车功能。

eclipse+sqlserver2005

1.主要强调了购物车的业务逻辑。

2,利用javabean封装。比较适合jsp初学者。

3.简洁实用。可以在此基础上开发更加复杂功能的购物网站。



数据库建立

create database shop_db

go

use shop_db

go

create table t_sp

(

  s_id int identity(1,1) primary key,

  s_name varchar(20) not null,

  s_price money not null

)

go

insert into t_sp values( IBM笔记本电脑 , 19999 )

insert into t_sp values( Hp商务笔记本电脑 , 8666 )

insert into t_sp values( 精通JSP技术 , 236 )

insert into t_sp values( ASP.NET高级应用 , 156 )

insert into t_sp values( J2EE高级开发 , 126 )

insert into t_sp values( 华硕笔记本电脑 , 6789 )

go

select * from t_sp

go-The realization of the basic shopping cart functionality. eclipse+ sqlserver20051. the main emphasis on the shopping cart business logic. 2, the use of JavaBean package. Jsp are more suitable for beginners. 3. Concise and practical. On this basis can the development of more complex functional shopping site. Database create database shop_dbgouse shop_dbgocreate table t_sp (s_id int identity (1,1) primary key, s_name varchar (20) not null, s_price money not null) goinsert into t_sp values (IBM notebook computer, 19999) insert into t_sp values (Hp Business Notebook, 8666) insert into t_sp values (proficient in JSP technology, 236) insert into t_sp values (ASP.NET advanced applications, 156) insert into t_sp values (J2EE Senior Developer, 126) insert into t_sp values (ASUS notebook computers, 6789) goselect* from t_spgo
(系统自动生成,下载前可以参看下载内容)

下载文件列表

testsession

...........\.classpath

...........\.mymetadata

...........\.project

...........\src

...........\...\com

...........\...\...\svse

...........\...\...\....\bean

...........\...\...\....\....\Car.java

...........\...\...\....\....\Spbean.java

...........\...\...\....\DAO

...........\...\...\....\...\UserDAO.java

...........\...\...\....\DBConnection

...........\...\...\....\............\DBConnection.java

...........\...\systemconfig.properties

...........\WebRoot

...........\.......\buy.jsp

...........\.......\index.jsp

...........\.......\META-INF

...........\.......\........\MANIFEST.MF

...........\.......\WEB-INF

...........\.......\.......\classes

...........\.......\.......\.......\com

...........\.......\.......\.......\...\svse

...........\.......\.......\.......\...\....\bean

...........\.......\.......\.......\...\....\....\Car.class

...........\.......\.......\.......\...\....\....\Spbean.class

...........\.......\.......\.......\...\....\DAO

...........\.......\.......\.......\...\....\...\UserDAO.class

...........\.......\.......\.......\...\....\DBConnection

...........\.......\.......\.......\...\....\............\DBConnection.class

...........\.......\.......\.......\systemconfig.properties

...........\.......\.......\lib

...........\.......\.......\...\sqljdbc.jar

...........\.......\.......\web.xml

相关说明

  • 本站资源为会员上传分享交流与学习,如有侵犯您的权益,请联系我们删除.
  • 本站是交换下载平台,提供交流渠道,下载内容来自于网络,除下载问题外,其它问题请自行百度更多...
  • 请直接用浏览器下载本站内容,不要使用迅雷之类的下载软件,用WinRAR最新版进行解压.
  • 如果您发现内容无法下载,请稍后再次尝试;或者到消费记录里找到下载记录反馈给我们.
  • 下载后发现下载的内容跟说明不相乎,请到消费记录里找到下载记录反馈给我们,经确认后退回积分.
  • 如下载前有疑问,可以通过点击"提供者"的名字,查看对方的联系方式,联系对方咨询.

相关评论

暂无评论内容.

发表评论

*主  题:
*内  容:
*验 证 码:

源码中国 www.ymcn.org