jsp online music sharing system

As a product of this era, music websites have long surpassed national boundaries, making listening to music simple and convenient. It abandons the shortcomings of traditional music listening media and is developing rapidly. Online music developed from music websites is a brand-new music model, which breaks through the limitations of traditional music production methods and transmission models, and is closer to people's lives. Music website is the development platform of online music.
The music sharing system is mainly divided into two parts: one is the front-end interface: users can realize music playback, news browsing, commenting and other functions by registering and logging in; the other is the back-end interface: the music website administrator manages user information and uploads updates Music resources, release the latest music information and other functions. Through jsp technology, mysql as a database to achieve

1. Registration module: Tourist users can register the account in the system. The data required for account registration includes user name, password, confirmation password, email, qq, etc. After submitting the registration information, the system judges whether the registration data entered by the user through the js code If it meets the specifications, add a user record to the system database. For security, use the md5 encryption algorithm to encrypt the password, and then store the database.
2. Login module: In the process of user login, it includes user name, password and verification code. The system needs to judge whether the verification code is right or wrong. If the user login uses the verification code, the user needs to enter the user name and password when logging in. , And enter the verification code. After judging that the verification code is correct, judge the user name and password. Because the user password is encrypted with MD5, when judging the user password, you should first convert the password to MD5 before judging. When the user name or password is incorrect When, return to the login page to display an error message.
3. Song language management module: the user releases the song language, the song language is stored in the activity table, the user clicks on the activity release, enters the event release page, after submitting the song language, the administrator reviews and manages the song language added by the user.
4. Song information management module: design the system's song information information table, the administrator manages the song information data, such as adding, deleting, modifying, querying, etc., when the administrator adding song information, after inputting the song information, use the js function Judge whether the input format is correct, and after the judgement is correct, insert song information data into the song information information table.
5. Song type management module: The song type management module includes song type entry, song type list, song type search, song type modification, and song type deletion, all of which implement database operations through SQL statements and place the data in the html interface .
6. Online message: Only users can leave online messages, they need to log in to the system, and enter the message content to complete the online message function, and at the same time check other users' messages.
7. Message management: used by super administrators and ordinary administrators, right Reply, delete, modify, and query all messages in the system. The message management module mainly realizes the cleaning of users' messages and deletes unnecessary messages, so that users have enough space to leave messages
Insert picture description here
Insert picture description here
Insert picture description here
Insert picture description here

Guess you like

Origin blog.csdn.net/weixin_37971904/article/details/109096008