VŠB-TUO — Teaching template · Database Systems
An example ORM project for an auction system, originally authored by Ing. Jan Kožusznik, Ph.D. at VŠB-TUO as a teaching template. Demonstrates object-relational mapping patterns in enterprise Java with support for Microsoft SQL Server and Oracle. Used as a starting point for assignments in database-focused courses.
- Java 17+
- Maven 3.8.2+
- Microsoft SQL Server or Oracle database
-
Clone the repository:
git clone https://github.com/Firestone82/SQL-ORM-Template.git cd SQL-ORM-Template -
Configure your database connection in
src/main/resources/(host, port, credentials, and dialect). -
Build:
mvn clean package
-
Run:
java -jar target/*.jar
Original template by VŠB-TUO / Ing. Jan Kožusznik, Ph.D.