Skip to content
Dawid Stankiewicz edited this page Aug 7, 2016 · 6 revisions

Project Forum

The web application in Java. As the title suggests it is a web forum.

Current functions

For everyone:

  • Creating a user profile at /registration.
  • Displaying at the homepage: all existing sections, recent topics and recent posts.
  • Displaying all topics from section at /section/{id}.
  • Displaying topic and posts at /topic/{id}.

Only for authorized user (ROLE_USER):

Only for admin (ROLE_ADMIN):

Database

Connection

The connection settings are in the file forum.properties.

db.driver.name=com.mysql.jdbc.Driver

db.jdbc.url=jdbc:mysql://localhost:3306/forum

db.username=root

db.password=root

Schema

Clone this wiki locally