快速业务通道

Struts1.2实现MySQL数据库分页 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-15

Struts1.2实现MySQL数据库分页

时间:2011-09-07

我的平台是:Eclipse3.2  MyEclipse5.5 Tomcat5.5 MySql5.0

第一步:创建数据库:

这没什么难的,用下面的脚本就OK了。

CREATE DATABASE page; use page; CREATETABLE `product` ( `id` varchar(11) NOTNULL, `sortid` varchar(11) NOTNULL, `name` varchar(50) NOTNULL, `price` doubleNOTNULL, `saleprice` doubleNOTNULL, `descript` text NOTNULL, `contents` text NOTNULL, `saledate` varchar(255) NOTNULL, `salecount` int(11) defaultNULL, `image` text, PRIMARYKEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;

第二步:创建一个项目

创建一个项目,项目名为”strutsPage”,导入Struts1.2 ,Struts的包采用默认,引用MySql的驱动,要是没有驱动的话,请到http://download.csdn.net/source/400716这下载。

下面设置web.xml和struts-config.xml配置文件,我觉得直接COPY我的就好了。

Struts1.2实现MySQL数据库分页(2)

时间:2011-09-07

web.xml:文件里的内容如下,直接换上就OK了。基本是默认的。

<?xml version="1.0" encoding="UTF-8"?>   <web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.4" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee  http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">    <servlet>     <servlet-name>action</servlet-name>     <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>     <init-param>      <param-name>config</param-name>      <param-value>/WEB-INF/struts-config.xml</param-value>     </init-param>     <init-param>      <param-name>debug</param-name>      <param-value>3</param-value>     </init-param>     <init-param>      <param-name>detail</param-name>      <param-value>3</param-value>     </init-param>     <load-on-startup>0</load-on-startup>    </servlet>    <servlet-mapping>     <servlet-name>action</servlet-name>     <url-pattern>*.do</url-pattern>    </servlet-mapping>    <welcome-file-list>     <welcome-file>index.jsp</welcome-file>    </welcome-file-list>   </web-app>

struts-config.xml的内容如下:

<?xml version="1.0" encoding="UTF-8"?>   <!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.2//EN" "http://struts.apache.org/dtds/struts-config_1_2.dtd">   <struts-config>    <data-sources />    <form-beans />    <global-exceptions />    <global-forwards />    <action-mappings >     <action      attribute="productShowForm"      input="/index.jsp"      name="productShowForm"      path="/productShow"      scope="request"

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号