Skip to content

A secured web app to play Tic-tac-toe against a dummy computer opponent. Built with Java and Spring Boot.

License

Notifications You must be signed in to change notification settings

randomvlad/TicTacToe

Repository files navigation

Tic-tac-toe App Logo
Tic-tac-toe App

CI Build CodeQL Codacy Badge codecov Snyk Security Monitoring OpenSSF Scorecard MIT license

A secured web app to play Tic-tac-toe against a dummy computer opponent.

Overview

  • Play a game on a 3x3 board with an option to go first or after the computer opponent.
  • Computer opponent's AI chooses random squares, except when going first in which case the center tile is always picked.
  • User game data is persisted to an in-memory database. As long as the server is not restarted, a player can leave and return to finish an in-progress game.
  • App is secured with a username & password login. Database is seeded with two usernames rick and morty. Both have the same password pickle.
  • UI renders server-side in the name of simplicity. Each game move results in a full page refresh.
  • For more info about the project and lessons learned, see: Little Code Gems.
  • Unit tests: src/test/java/tictactoe/*

Tech Stack

Technology
Language Java 25
Framework Spring Boot v4.0
Data Layer H2 Database, JPA & Hibernate v7.2
UI Layer HTML, CSS, Javascript, Bootstrap v5, Thymeleaf v3.1
Testing JUnit 5, Mockito, AssertJ
Build Tool Gradle v9.2

Install & Run

  • Install Java 25.
    • Tip: use SDKMAN! to effortlessly install and switch between Java versions and distros.
  • Clone repo: git clone https://github.com/randomvlad/TicTacToe.git
  • Navigate cd TicTacToe and run applicable Gradle Wrapper command:
    • macOS/Unix: ./gradlew bootRun
    • Windows: gradlew.bat bootRun
  • Once app is running, go to http://localhost:8080/tictactoe/.
  • Log in with username rick or morty and password pickle to play a game.
  • To end app, kill process in terminal with CTRL + C.

Screenshots

Login Page

Tic-tac-toe app login screenshot

Game Won

Tic-tac-toe app won game screenshot

Game Lost

Tic-tac-toe app lost game screenshot

Game Draw

Tic-tac-toe app draw game screenshot

Custom Error Page

Tic-tac-toe app error page screenshot

About

A secured web app to play Tic-tac-toe against a dummy computer opponent. Built with Java and Spring Boot.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published