Skip to content

anpryl/BlackJack

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BlackJack

BlackJack RESTful webservice

Technologies used: Spring core, Spring boot, Spring MVC, Hibernate Database: HSQLDB

In-memory HSQLDB for testing and embedded for work. Database startup automatically with application and hold data in folder BlackJackDB.

If you have installed gradle than you can build runnable jar with "gradle jar", war with "gradle war" or both with "gradle build". Also you can run application without build with "gradle bootRun". If you need gradle you can run gradlew.bat, it will download and install gradle.

Address of application: localhost:8080

List of commands:

/account +

  (POST_METHOD) - return created Account with 0 balance

  /{accountId}/money/{amount} - (PUT_METHOD) - add {amount} to
                                                  Account's({accountID}) balance

  /{accountId} - (GET_METHOD) - return Account info by {accountId}

/game/{accountId} +

  /{bet} - (POST_METHOD) -  prepares new table for new player {accountId}
  with {bet}, you need to click this only once per session, but you can always start
  new game. Returns GameStatus with your cards, dealer's cards and information about 
  winner, if someone wins.

  /{bet} - (PUT_METHOD) - places new {bet}, you need to do this only when someone
  win or it's draw. You don't need to start game every time someone won. Returns GameStatus

  /hit - (POST_METHOD) - after first deal you can take next card from deck("hit") or you
  have enough cards and you decide to stop("stand"). Returns GameStatus

  /stand - (POST_METHOD) - when you decide to stop take cards from deck you say "Stand"
  and dealer starts his move. Returns GameStatus                                       

  (GET_METHOD) - returns all games for {accountId}

/transaction/{accoundId} - (GET_METHOD) - returns all transactions for {accountId}

/action/{gameId} - (GET_METHOD) - returns all actions for specific game by {gameId}

Examples: /localhost:8080/create/1000 - you will get JSON file with accountId there, for example - 1 /localhost:8080/game/1/startgame/50 /localhost:8080/game/1/hit
/localhost:8080/game/1/stand
/localhost:8080/game/1/bet/50
/localhost:8080/transactions/1

About

BlackJack RESTful webservice

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages