Welcome![Sign In][Sign Up]
Location:
Search - jsp page web mysql

Search list

[JSPJava 实用系统开发指南JavaPractice

Description: ·VI· 目 录 前言 第1章 高性能聊天系统...................................................................................................1 1.1 系统需求...........................................................................................................1 1.2 架构设计...........................................................................................................2 1.2.1 Java事件模型.....................................................................................................2 1.2.2 架构设计图.......................................................................................................5 1.2.3 协议设计.........................................................................................................5 1.2.4 多线程...........................................................................................................6 1.2.5 线程池...........................................................................................................9 1.2.6 非堵塞I/O........................................................................................................11 1.3 Socket核心设计和实现...............................................................................................13 1.3.1 TCP和Reactor模式.................................................................................................14 1.3.2 UDP实现..........................................................................................................19 1.3.3 客户端实现.......................................................................................................22 1.4 Socket接口设计和实现..............................................................................................28 1.4.1 队列和对象类型..................................................................................................28 1.4.2 访问者模式定义..................................................................................................32 1.4.3 访问者模式实现..................................................................................................36 1.4.4 协议封装........................................................................................................39 1.4.5 重整Refactoring.................................................................................................41 1.5 应用接口设计和实现................................................................................................45 1.5.1 Connection API..................................................................................................46 1.5.2 ConnectionFactory API...........................................................................................49 1.5.3 TcpConnection API...............................................................................................53 1.5.4 UdpConnection API...............................................................................................54 1.6 应用层设计和实现..................................................................................................56 1.6.1 客户端聊天测试..................................................................................................56 1.6.2 服务器聊天测试..................................................................................................58 1.7 性能测试..........................................................................................................59 1.8 小结..............................................................................................................61 第2章 简单的用户注册系统..............................................................................................62 2.1 需求分析............................................................................................................62 2.2 系统设计............................................................................................................62 2.2.1 JSP/Servlet与J2EE.................................................................................................63 2.2.2 结构设计图........................................................................................................64 2.2.3 JSP/JavaBeans技术要点.............................................................................................65 2.2.4 JDBC和连接池......................................................................................................68 2.2.5 数据库设计........................................................................................................70 2.3 类的详细设计和实现..................................................................................................71 2.3.1 Facade模式........................................................................................................71 2.3.2 JDBC通用操作类....................................................................................................73 2.3.3 E-mail发送通用类..................................................................................................78 2.3.4 用户资料管理......................................................................................................79 2.3.5 密码数据操作类....................................................................................................83 2.3.6 登陆验证功能......................................................................................................85 2.4 界面编程实现........................................................................................................87 2.4.1 登陆验证页面......................................................................................................87 2.4.2 注册页面..........................................................................................................88 2.5 调试、发布和运行....................................................................................................90 2.5.1 单元测试..........................................................................................................91 2.5.2 快速配置开发环境..................................................................................................92 2.5.3 Tomcat配置和调试..................................................................................................93 2.5.4 Tomcat连接池使用..................................................................................................95 2.6 Hibernate使用.......................................................................................................99 2.7 小结................................................................................................................103 第3章 Jive论坛系统.....................................................................................................107 3.1 Jive功能需求.......................................................................................................107 3.2 Jive与设计模式.....................................................................................................108 3.2.1 设计模式.........................................................................................................109 3.2.2 ForumFactory与工厂模式...........................................................................................109 3.2.3 统一入口与单态模式...............................................................................................113 3.2.4 访问控制与代理模式...............................................................................................114 3.2.5 批量分页查询与迭代模式...........................................................................................115 3.2.6 过滤器与装饰模式.................................................................................................120 3.2.7 主题监测与观察者模式.............................................................................................124 3.3 Jive安全管理机制...................................................................................................128 3.3.1 安全验证机制.....................................................................................................129 3.3.2 用户资料管理.....................................................................................................132 3.4 Jive的缓存机制.....................................................................................................133 3.4.1 缓存原理和实现...................................................................................................133 3.4.2 缓存使用.........................................................................................................136 3.4.3 小结.............................................................................................................139 3.5 Jive的其他组件技术.................................................................................................140 3.5.1 Jive的树形结构...................................................................................................140 3.5.2 XML和JDOM........................................................................................................143 3.5.3 全文检索和Lucene.................................................................................................147 3.5.4 Jive的中文问题...................................................................................................152 3.6 Jive图形处理.......................................................................................................154 3.6.1 图片上传处理.....................................................................................................154 3.6.2 服务器端图形处理.................................................................................................157 3.7 Jive安装调试运行...................................................................................................159 3.8 小结...............................................................................................................160 第4章 网站内容管理系统.................................................................................................161 4.1 需求分析...........................................................................................................161 4.2 架构设计...........................................................................................................162 4.2.1 系统架构图.......................................................................................................163 4.2.2 MVC模式和Struts..................................................................................................164 4.2.3 DBO模式和Castor..................................................................................................167 4.2.4 Cache设计........................................................................................................172 4.3 详细设计和实现.....................................................................................................173 4.3.1 基本对象设计.....................................................................................................173 4.3.2 数据模型的实现...................................................................................................174 4.3.3 抽象工厂(Abstract Factory)模式...................................................................................175 4.3.4 生成器(Builder)模式..............................................................................................180 4.4 表现层的实现.......................................................................................................187 4.4.1 Strut相关设置....................................................................................................187 4.4.2 创建PageForm.....................................................................................................189 4.4.3 创建PageAction...................................................................................................192 4.4.4 创建page.jsp页面.................................................................................................194 4.4.5 自定义标签库.....................................................................................................196 4.4.6 创建SavePageAction...............................................................................................199 4.4.7 Tile模板.........................................................................................................201 4.4.8 创建cmsMenu.jsp..................................................................................................203 4.4.9 创建index.jsp....................................................................................................203 4.4.10 小技巧..........................................................................................................204 4.5 项目重整Refactoring................................................................................................205 4.6 调试、发布和运行...................................................................................................206 4.6.1 配置和运行.......................................................................................................206 4.6.2 Log调试信息的配置................................................................................................206 4.7 小结...............................................................................................................207 第5章 订阅信息系统.....................................................................................................209 5.1 需求分析...........................................................................................................209 5.2 架构设计...........................................................................................................209 5.2.1 Cache和Pool......................................................................................................210 5.2.2 EJB框架体系......................................................................................................211 5.2.3 架构图...........................................................................................................213 5.2.4 接口框架设计.....................................................................................................213 5.3 EJB详细设计和实现..................................................................................................214 5.3.1 业务对象建模.....................................................................................................215 5.3.2 开发环境配置.....................................................................................................216 5.3.3 CMP图形开发......................................................................................................217 5.3.4 实体Bean.........................................................................................................221 5.3.5 Facade Session Bean..............................................................................................229 5.3.6 Transfer Object模式..............................................................................................232 5.4 Web与EJB接口框架...................................................................................................233 5.4.1 框架的设计.......................................................................................................233 5.4.2 框架的实现.......................................................................................................235 5.4.3 框架的使用.......................................................................................................243 5.5 表现层的设计和实现.................................................................................................247 5.5.1 创建ActionForm...................................................................................................247 5.5.2 创建Action 类....................................................................................................248 5.5.3 创建JSP页面......................................................................................................248 5.6 调试配置和运行.....................................................................................................249 5.6.1 JBoss和MySQL的配置...............................................................................................250 5.6.2 JNDI配置.........................................................................................................251 5.6.3 部署和发布.......................................................................................................253 5.6.4 调试和测试.......................................................................................................254 5.7 小结...............................................................................................................254 第6章 用户安全管理系统.................................................................................................256 6.1 需求分析...........................................................................................................256 6.2 架构设计...........................................................................................................256 6.2.1 角色.............................................................................................................257 6.2.2 J2EE的JAAS.......................................................................................................257 6.2.3 单点登录.........................................................................................................259 6.2.4 邮件发送组件.....................................................................................................261 6.3 详细设计和实现.....................................................................................................261 6.3.1 业务对象建模.....................................................................................................261 6.3.2 数据库设计.......................................................................................................263 6.3.3 实体bean实现.....................................................................................................263 6.3.4 Session Bean实现.................................................................................................266 6.3.5 EJB容器安全配置..................................................................................................273 6.4 JMS 邮件发送组件...................................................................................................275 6.4.1 消息发送器.......................................................................................................276 6.4.2 MDB..............................................................................................................279 6.5 Web层的实现........................................................................................................282 6.5.1 用户资料管理.....................................................................................................282 6.5.2 Web容器安全配置..................................................................................................287 6.6 调试配置和运行.....................................................................................................289 6.6.1 JAAS配置.........................................................................................................290 6.6.2 邮件服务的配置...................................................................................................291 6.6.3 部署和发布.......................................................................................................292 6.7 小结...............................................................................................................292 第7章 EJB方法调用框架..................................................................................................294 7.1 框架概况...........................................................................................................294 7.1.1 远程调用技术背景.................................................................................................294 7.1.2 框架结构.........................................................................................................295 7.2 框架设计..........................................................................................................296 7.2.1 代理(Proxy)模式...............................................................................................296 7.2.2 动态代理........................................................................................................298 7.2.3 反射(Reflection)和方法调用....................................................................................300 7.2.4 HTTP协议和对象序列化............................................................................................302 7.2.5 框架设计图......................................................................................................304 7.2.6 HTTPSession和缓存机制...........................................................................................305 7.2.7 基于HTTP的安全机制..............................................................................................306 7.3 类的详细设计和实现................................................................................................309 7.3.1 基本业务对象....................................................................................................310 7.3.2 动态代理工厂....................................................................................................312 7.3.3 肥客户端/服务器架构下实现.......................................................................................315 7.3.4 Web层代理Servlet Proxy..........................................................................................322 7.3.5 浏览器/服务器架构下实现.........................................................................................324 7.3.6 核心代理Business Proxy实现......................................................................................327 7.4 框架的使用和调试..................................................................................................333 7.4.1 配置............................................................................................................333 7.4.2 浏览器/服务器架构下的应用.......................................................................................335 7.4.3 肥客户端/服务器架构下的应用.....................................................................................336 7.5 小结..............................................................................................................337 第8章 网上商店系统...................................................................................................338 8.1 系统需求和设计...................................................................................................338 8.1.1 基本业务对象...................................................................................................339 8.1.2 数据表设计.....................................................................................................340 8.2 数据操作通用框架.................................................................................................344 8.2.1 框架的提炼和设计...............................................................................................347 8.2.2 增、删、改、查框架实现.........................................................................................352 8.3 商品类别管理功能的实现...........................................................................................356 8.3.1 创建Session Bean................................................................................................357 8.3.2 EJB配置.........................................................................................................358 8.3.3 创建Category相关类实现..........................................................................................360 8.3.4 Web配置.........................................................................................................361 8.3.5 创建Category.jsp................................................................................................362 8.4 商品管理功能的实现................................................................................................364 8.4.1 创建ProductManager..............................................................................................364 8.4.2 EJB配置.........................................................................................................366 8.4.3 创建Product相关类实现...........................................................................................368 8.4.4 Web配置.........................................................................................................369 8.4.5 创建product.jsp.................................................................................................370 8.4.6 商品图片上传功能................................................................................................374 8.5 商品批量查询和多页显示............................................................................................376 8.5.1 DAO模式.........................................................................................................377 8.5.2 Strut框架下设计和实现...........................................................................................385 8.5.3 页导航条实现....................................................................................................388 8.6 购物车功能的实现..................................................................................................393 8.6.1 有状态Session Bean..............................................................................................393 8.6.2 Web功能实现.....................................................................................................396 8.7 小结..............................................................................................................399
Platform: | Size: 31514707 | Author: fengbozs@163.com | Hits:

[JSP/JavaJspNetshop

Description: 网络商店源代码用NetBeans6.1Beta开发,实现jsp+servlet+mysql的具体应用,完成管理员对商品的管理,用户购物等基本流程。重点突出jsp页面通过servlet和javabeans 数据库之间的互动。是学习网页和数据库之间通讯的具体实例,对于熟练应用web development+database有很大帮助。-Network stores the source code used NetBeans6.1Beta development, realize jsp+ Servlet+ Mysql specific applications, complete management of the administrator of the goods, the user to the basic flow. Focused servlet through jsp page and the interaction between the database JavaBeans. Learning website and database communications between the concrete examples and applications for skilled web development+ Database has great help to me.
Platform: | Size: 27648 | Author: 廖忠江 | Hits:

[WEB CodeJSPcaiwu

Description: 主要功能有: 费用管理  所有费用 增加收入  增加支出 费用类型 报销人  费用统计  用户管理 增加用户 登陆信息 后台登录页面: login.jsp 用户:admin 密码:admin 安装方法:本程序在weblogic6.0下调试,在resin下运行都很正常 数据库用的是mysql4.0,数据库文件在database/caiwu.sql web-inf /lib/ mm.mysql.jar是mysql数据库jdbc驱动程序 web-inf / classes下是本程序的java源文件及编译好的类 web-inf / classes/config/caiwu.properties是配置文件-The main features are: the cost of the management of all costs to increase revenue to increase the types of expenditures were reimbursed the cost of statistical user management background information to increase user login the login page: login.jsp user: admin password: admin installation method: This procedure debugging in weblogic6.0 in resin under the normal operation of the database are used mysql4.0, database files in the database/caiwu.sqlweb-inf/lib/mm.mysql.jar is jdbc driver for mysql database web-inf/classes is the source of this procedure java category of documents and compiled web-inf/classes/config/caiwu.properties is the configuration file
Platform: | Size: 355328 | Author: sam | Hits:

[JSP/Javacellen

Description: CELLEN的个人网页,基于 JSP页面,使用MYSQL数据库。-CELLEN personal web pages, based on the JSP page, use the MYSQL database.
Platform: | Size: 398336 | Author: 舟消垄 | Hits:

[JSP/Javahaosou

Description: 这个项目是本人的创业项目,是一个房地产搜索及交易网站(详见网站功能说明书+网站功能页面示意),采用jsp+servlet+hibernate3架构;该网站的基本框架已完成,曾在公网上试运行过一段时间,表现稳定。现在还有部分页面未完成,因本人个人情况及资金问题难以维持,因此停止开发,并公布其源码,希望有志者能继续开发下去并成功创业! 安装tomcat6.0 及MYSQL 5.0,导入haosou.sql(建表语句及部分数据),即可运行本项目。-This project is my own venture project is a real estate search and transaction site (see Web site features functional specification+ page hint), using jsp+ servlet+ hibernate3 structure the basic framework of the site have been completed online in the public trial Run over a period of time, performance and stability. There are still some pages are not completed, due to my personal circumstances and financial problems which are difficult to maintain, so to stop development, and publish their source code, hoping to continue development of aspiring and successful entrepreneurs go! Install tomcat6.0 and MYSQL 5.0, import haosou.sql (CREATE TABLE statements and some of the data), you can run this project.
Platform: | Size: 20544512 | Author: 吴语 | Hits:

[JSP/JavadatangTaskSystem

Description: 公司内部用户、任务与计划管理的系统,B/S结构;该系统使用Struts框架与MySql数据库,Tomcat6.0作Web服务器,使用CVS进行源 代码版本控制,使用MyEclipse6.5作开发工具。 使用该系统的角色有系统管理员、主管和员工;系统管理员可以添加人员并分配其角色(主管和员工),主管可以制定任务、查看自已布置的任务、跟踪实施中的任 务、查看部下的人员;员工可以查看主管布置的任务、为任务制订计划、自已制订的计划的管理、反馈与提交计划; 实现了三种不同角色(系统管理员、主管和员工)的登陆与权限控制,内部采用了权限过滤器来控制权限,前端JSP(View)页面采用Struts标签库和 EL表达式语言,后端使用Struts Action(Control)作为控制器接受用户请求,并根据用户输入使用业务逻辑层与DAO层实现数据访问,并将业务数据封装到 JavaBean(Model)并用Action来决定跳转到相应的JSP页面访问JavaBean显示数据。 -Internal users, tasks and program management system, B/S structure the system uses the Struts framework and MySql database, Tomcat6.0 for Web server, use CVS for source code version control, use MyEclipse6.5 for development tools. Roles using the system administrator, supervisors and employees system administrators can add staff and assign its role (managers and employees), head of the task can be formulated, see their own layout tasks, tracking the implementation of the tasks, view the underlying staff staff can view the task in charge arrangement for the task of planning, the management of their own development plans, feedback and submit a plan To achieve three different roles (system administrator, managers and employees) of landing and access control, the internal use of the authority to control the permissions filter, front-end JSP (View) page using Struts tag libraries and the EL expression language, back-end use Struts Action (Control) as the controller to accept u
Platform: | Size: 1573888 | Author: 何森 | Hits:

[JSP/JavaDMP_Web

Description: jsp web page and mysql data for DMP
Platform: | Size: 2693120 | Author: Sss | Hits:

[JSP/Javawebdgs

Description: 一个J2EE购物网站的实现 运用struts1.2+hibernate+spring 框架,数据库连接池,事务管理;Struts 应用国际化,Struts 标签库与Tiles框架, JSTL标签库,Spring IOC。 采用优化性能技术,采用oscache缓存,freemarker静态页面生成; 安装方法: 1:mysql中新建数据库dgssen.导入dgssen.sql 也可以修改:WebRoot\META-INF\context.xml 2:把mysql-connector-java-5.0.4-bin.jar这个mysql驱动jar包放到tomcat 6 下的lib下 3:把根目录下的net文件夹放到WebRoot\WEB-INF\classes下。因为这个是在线编辑器用到的.class 4: 后面管理地址: http://localhost:8080/webdgs/admin/frame.jsp 用户名/密码:admin/123456 合作商管理 http://localhost:8080/webdgs/ad 相应的用户与密码在后台管理设置-Implementation of a J2EE application shopping site struts1.2+ hibernate+ spring framework, database connection pooling, transaction management Struts Application International, Struts and Tiles tag library framework, JSTL tag library, Spring IOC. Optimized performance technology, oscache cache, freemarker static page generation installation methods: 1: mysql in the new database dgssen. Import dgssen.sql can also modify: WebRoot \ META-INF \ context.xml 2: the mysql-connector-java-5.0.4-bin.jar into the mysql driver jar package lib under tomcat 6 under the 3: the root directory of the folder into the net under the WebRoot \ WEB-INF \ classes the next. Because this is the online editor used. Class 4: after management address: http://localhost:8080/webdgs/admin/frame.jsp username/password: admin/123456 Partner Management http://localhost:8080/ webdgs/ad corresponding user and password management settings in the background
Platform: | Size: 28949504 | Author: 杨晓民 | Hits:

[JSP/Java001

Description: 部署Web应用请按如下步骤进行: 1. 进入reg_login路径下,将mysql.sql脚本中的语句导入MySQL数据库。 2. 修改reg_login\WEB-INF路径下的applicationContext.xml文件,将其中的数据库密码修改为你的数据库密码。 3. 推荐使用Tomcat 5.5系列作为应用服务器。将整个应用复制到 TOMCAT_HOME /webapps路径下。 4. 启动Dos或shell窗口,进入reg_login\WEB-INF路径下,输入: ant compile -- 该命令用于编译应用。 5. 启动Tomcat服务器。 6. 系统的Login.jsp页面是登录页面,Regist.jsp页面是注册页面。-Deployment of Web applications, please click the following steps: 1. Into reg_login path, will mysql.sql script into MySQL database statement. 2. Modify reg_login \ WEB-INF directory of the applicationContext.xml file, which will change the database password for your database password. 3. Recommended as the application server Tomcat 5.5 series. Copy the entire application to TOMCAT_HOME /webapps directory. 4. Start Dos or shell window, enter the reg_login \ WEB-INF directory, type: ant compile- This command is used to compile the application. 5. Start Tomcat server. 6. Login.jsp system page is the login page, Regist.jsp page is the registration page.
Platform: | Size: 11329536 | Author: wuxiangyong | Hits:

[JSP/Javabooksonline

Description: 平时练手的web程序,基于JSP、servlet和mysql的网上书店,主要功能有:书籍管理、用户管理、类别管理、书籍查询、留言、分页等;页面全部由自己设计,使用了JQuery来提升网页的动态效果。-The JSP servlet and mysql-based online bookstore, the main function: book management, user management, category management, books, inquiries, voice mail, paging, etc. page all their own design, using JQuery to enhance the dynamic effect of the web page.
Platform: | Size: 4657152 | Author: jiangyadong | Hits:

[JSP/JavaEYingNews

Description: 本系统特色: 1、前台完全生成静态HTML 2、栏目是无级分类的,您可以随意设置栏目,只要您能想到的,多少都可以:) 3、制作简单,由于本人以前曾经使用过动易网站管理系统,所以在功能方面向动易文章管理系统靠拢, 前台制作采用标签制,分为系统标签和用户自义义标签两种,系统标签是自代的,用户不可以修改,而自定义标签则是用户根据相应的功能自己定制出来的,固此,可以自行删除或修改! 4、秉承JAVA开源理念,本新闻发布系统开源! 5、本系统采用到的技术:JSP+Struts+JSTL+EL,我本人喜欢JSTL+EL的组合方式,他不景向页面美观! 6、mysql.sql这个文件是mysql的脚本文件,您可以用它来创建数据库! 7、这个新闻发布系统,由我个人独立开发,在线编辑器用的是“飞鱼”,风格及功能上参照动易网站管理系统(http://www.asp163.net) 8、源码在\WEB\INF\SRC目录下边,源码上有我的开发时候的注释! 9、Connections为数据库连接类,有关于数据库名访问用户名密码等请修改源文件生自行编译!-The system features: 1, the foreground is completely generate static HTML 2, the part is no level classification, you can set the column as long as you can think of, as many as you like :) 3, the production is simple, because I ve used dynamic website management system, to move closer to the action easy article management system in terms of functionality, Front produced using the labeling system is divided into labels and user label of justice and righteousness two kinds, the system label is self-generation, the user can not modify the custom tag is a user according to the function out of their own custom, solid You can delete or modify! , Adhering to the JAVA open-source philosophy, this news release system open source! 5, the system uses the technology: the JSP+ Struts+ the JSTL+ EL, I like the combination of the JSTL+ EL downturn to the page beautiful! 6, the mysql.sql This file is mysql script file, you can use it to create a database! 7, the news release system independe
Platform: | Size: 3807232 | Author: 王维 | Hits:

[JSP/Javaweb-friends

Description: 简单的但是所有的网站都会用到的jsp页面 mysql数据库 用户名root 密码123456-But all sites will be used in jsp page mysql database user name root password 123456
Platform: | Size: 179200 | Author: 黄小乐 | Hits:

[JSP/Javawebdgs

Description: 绿色健康购物网SSH 个人水平有限,如有问题与建议,请指教! (1)个人独立完成,包括mysql数据库设计,后台程序编写,前台美工设计; (2)运用struts1.2+hibernate+spring 框架,数据库连接池,事务管理; (3)Struts 应用国际化,Struts 标签库与Tiles框架, JSTL标签库,Spring IOC; (4)采用优化性能技术,采用oscache缓存,freemarker静态页面生成; (5)功能比较多但操作简单的后台管理 (后台管理附图片); 安装方法: 1:mysql中新建数据库dgssen.导入dgssen.sql 也可以修改:WebRoot\META-INF\context.xml 2:把mysql-connector-java-5.0.4-bin.jar这个mysql驱动jar包放到tomcat 6 下的lib下 3:把根目录下的net文件夹放到WebRoot\WEB-INF\classes下。因为这个是在线编辑器用到的.class 4: 后面管理地址: http://localhost:8080/webdgs/admin/frame.jsp 用户名/密码:admin/123456 合作商管理 http://localhost:8080/webdgs/ad 相应的用户与密码在后台管理设置 -Green and healthy shopping network SSH personal level, If you have any questions, and suggestions, please advise! (1) Personal independently, including the mysql database design, background programming, graphic design front (2) use struts1.2+hibernate+spring framework, database connection pool and transaction management (3) Struts application internationalization, the Struts tag library with the Tiles framework, JSTL tag libraries, Spring IOC (4) using the optimized performance technology, using oscache caching, the freemarker static page generation (5) functions more operating simple background management (Admin attached picture) installation methods: 1: mysql new database dgssen import dgssen.sql can also modify: WebRoot \ META-INF \ context.xml 2: put the mysql-connector-java- 5.0.4-bin.jar The mysql driver jar package into the tomcat' s lib: net folder under the root directory on the WebRoot \ WEB-INF \ classes. Because this is used by the online editor. Class 4: behind th
Platform: | Size: 28937216 | Author: Alex | Hits:

[JSP/Javavoucher_struts1.1

Description: 项目名称:网络报销管理系统 开发语言: Java 开发环境:Windows XP sp2 IDE: MyEclipse 8.5 设计模式: MVC WEB服务器:TomCat 6.0 数据库: MySQL 5.1 开发技术:Struts2 + JDBC + JSP 访问登陆地址:localhost:8080/voucher/login 主要实现功能:一、用户的登陆功能 ,根据用户的用户名和密码登陆到系统主页面,登陆过程中会验证用户的用户名和密码是否正确,如果不正确就会提示用户且停留在登陆页面等待用户继续输入。并设置有登陆拦截器所以不能跳过登陆而直接访问系统主页面。 二、主页面功能主要有:报销单查询、报销单申请、报销单审核、报销单审批、退出系统等功能。因为每个登陆用户都有一个权限状态码,其中报销单查询、报销单申请、退出系统功能所有用户都能使用,而报销单审批只有权限状态为1的用户才能使用,报销单审核只有权限状态为2的用户才能使用。-Project Name : Network Management System reimbursement Development languages ​ ​ : Java Development environment : Windows XP sp2 IDE: MyEclipse 8.5 Design Patterns : MVC WEB server : TomCat 6.0 Database : MySQL 5.1 Development of technology : Struts2+ JDBC+ JSP Visit landing Address : localhost: 8080/voucher/login The main functions: a user s login functionality log the user s user name and password to the system home page , landing process will validate the user s username and password are correct , if not correct it will prompt the user and stay in the landing page waiting for the user continue typing. And is provided so you can not skip the login interceptor and direct access to the system login page. Second, the main page features are: single query reimbursement , reimbursement single application , a single audit reimbursement , reimbursement single approval, exit the system functions. Because each user has a landing permission status code , whic
Platform: | Size: 12510208 | Author: 徐纲 | Hits:

[JSP/JavaTigerMinesweeper

Description: 利用JSP编写的扫雷小程序,在网页上运行,数据库使用的是MySQL数据库-Mine prepared using JSP program that runs on a web page, the database uses a MySQL database
Platform: | Size: 616448 | Author: 微雨桐 | Hits:

[JSP/Javaserver

Description: 将百度地图Javascript接口嵌入jsp网页中,可在网页中显示百度地图网页版的显示效果。同时将Mysql中的位置数据显示在地图上-Baidu map interface to embed the Javascript jsp page, you can display the Web version of Baidu map display in the page. While Mysql location data displayed on the map
Platform: | Size: 1019904 | Author: 张雷 | Hits:

[MySQLmemo

Description: 使用Java,MySQL,jsp开发的网页版记事本-The use of Java, MySQL, JSP development of the web page version of Notepad
Platform: | Size: 9329664 | Author: 现实世界 | Hits:

[JSP/Javanews

Description: 使用java程序实现web项目 新闻管理系统 综合使用MVC架构,分层实现各方面功能,mysql数据库及tomcat服务器,jsp页面相互结合,实现新闻信息的增删改查以及分页功能-Use java program implements web project- an integrated information management system using the MVC architecture, layered implementing various aspects of function, mysql server and tomcat, jsp page combined with each other to achieve CRUD news and information, check paging function
Platform: | Size: 6648832 | Author: 王晓楠 | Hits:

CodeBus www.codebus.net