当前位置:网站首页>Design and implementation of ks004 based on SSH address book system
Design and implementation of ks004 based on SSH address book system
2022-07-02 19:41:00 【Programming thousand paper cranes】
This system is based on SSH Framework to implement , Database adoption MYSQL, Development tools are eclipse or IDEA, The front end uses JSP and jquery-easyui To implement , Simple and generous , The operation is correct . Suitable for course design or homework .
2 System requirements analysis
Purpose : The purpose of the feasibility study is to determine whether the problem can be solved in as little time as possible at the least cost . The system officially uses a relatively simple Java Language to write a small 、 Practical address book information management system , It can not only complete the management of user information , And more economical . This system uses Java Language , In terms of technical difficulty , Due to the guidance of the instructor and relevant references , In particular, there are abundant relevant materials on the Internet , By referring to the design of some functional module programs , It is completely possible to realize the system .
The design of this system is in windows XP In the Chinese version , Use eclipse+mysql Developed . It can run on windows XP Database development system of relevant platforms .SQLyog It can not only simplify database management , And the application development process is more reasonable , It enables the organization of data , Defining database rules and building applications becomes easy , Using visual design tools and wizards , Users can quickly create forms 、 Query etc. .
2.1 Requirements overview
This system mainly realizes the management of address book information , Main functions :
(1) System login
(2) Address book management information : Addition of information 、 Delete 、 Browse 、 Modify and query operations .
(3) Data paging function , front end easyUI frame
2.2 Functional analysis
Address book add , modify , Delete , Query and so on .
2.2.1 Front desk function module
(1) Sign in : Dynamic login mode , It's refreshing .
2.2.2 Background function module
(1) Inquire about : Query all data .
(2) modify : Modify the data selected by the user .
(3) Delete : Delete the data selected by the user .
(4) add to : Add new address book data .
3 The system design
3.1 Database table design
3-1 Address list

3-2 City table

3-3 User table

3.2 Database connection
<something-else-entirely>
<proxool>
<alias>proxoolPool</alias>
<!-- for mysql Database connection configuration -->
<driver-url>jdbc:mysql://localhost:3306/db_address?characterEncoding=UTF-8</driver-url>
<driver-class>com.mysql.jdbc.Driver</driver-class>
<driver-properties>
<property name="user" value="root"/>
<property name="password" value="root"/>
</driver-properties>
<maximum-connection-count>300</maximum-connection-count>
<minimum-connection-count>10</minimum-connection-count>
<house-keeping-sleep-time>120000</house-keeping-sleep-time>
<simultaneous-build-throttle>30</simultaneous-build-throttle>
<prototype-count>10</prototype-count>
<maximum-active-time>36000000</maximum-active-time>
<maximum-connection-lifetime>43200000</maximum-connection-lifetime>
</proxool>
</something-else-entirely>
4 system implementation
4.1 Login function

4.2 User enters password

4.2 Log in successfully

4.3 Add information page

4.3 Add contact page

4.3 Modify contact page

The system runs correctly , Fully functional .
边栏推荐
猜你喜欢
![[error record] problems related to the installation of the shuttle environment (follow-up error handling after executing the shuttle doctor command)](/img/c1/a00425f2e1824a50644c8fbb15fe38.jpg)
[error record] problems related to the installation of the shuttle environment (follow-up error handling after executing the shuttle doctor command)

搭建哨兵模式reids、redis从节点脱离哨兵集群

自動生成VGG圖像注釋文件

Py之interpret:interpret的简介、安装、案例应用之详细攻略

AcWing 903. 昂贵的聘礼 题解(最短路—建图、dijkstra)

Istio1.12:安装和快速入门

Py's interpret: a detailed introduction to interpret, installation, and case application

Set up sentinel mode. Reids and redis leave the sentinel cluster from the node

字典

xml开发方式下AutowiredAnnotationBeanPostProcessor的注册时机
随机推荐
KS004 基于SSH通讯录系统设计与实现
Reading notes of code neatness
PHP parser badminton reservation applet development requires online system
AcWing 1125. Cattle travel problem solution (shortest path, diameter)
Chic Lang: completely solve the problem of markdown pictures - no need to upload pictures - no need to network - there is no lack of pictures forwarded to others
NMF-matlab
AcWing 343. 排序 题解(floyd性质实现传递闭包)
Py's interpret: a detailed introduction to interpret, installation, and case application
Yes, that's it!
zabbix5客户端安装和配置
程序猿入门攻略(十二)——数据的存储
AcWing 383. 观光 题解(最短路)
Solution: vs2017 cannot open the source file stdio h main. H header document [easy to understand]
《代码整洁之道》读书笔记
AcWing 383. Sightseeing problem solution (shortest circuit)
End to end object detection with transformers (Detr) paper reading and understanding
Dictionaries
Advanced performance test series "24. Execute SQL script through JDBC"
蓝牙芯片ble是什么,以及该如何选型,后续技术发展的路径是什么
452-strcpy、strcat、strcmp、strstr、strchr的实现