Skip to content

Information Keeping Web Application using Spring Boot, Spring Data JPA, Thymeleaf Templating Engine and Spring Security. Deployed on Amazon elastic beanstalk.

Notifications You must be signed in to change notification settings

badripaudel77/Information-manager-web-app-spring-boot

Repository files navigation

Explanation and Information

Note : For detail explanation of how to dockerize simple spring boot Java application you can visit my website at guides to code


Information Keeping Web Application using Spring Boot, Data JPA, Thymeleaf and Spring Security.

'Uses Docker Image available at docker hub link below and postgres official docker image to run the application with docker-compose'

To test use command docker pull badripaudel77/info-keeper-spring-boot-docker:my-info-app

and to run, type the command docker run -p 8080:8080 badripaudel77/info-keeper-spring-boot-docker:my-info-app and hit localhost:8080 in browser and you should good to see the result.

This branch will use docker compose to create image, run as application wants to run with database docker image.



Uses MVC pattern

Dependency Used :
                  Spring Web, Hibernate, Data JPA, Thymeleaf, Security, PostgresSQL

Project file Structure

  • java -> All the source codes
  • static -> All CSS, JS & Images and all static files if any
  • templates -> All HTML files [thymeleaf]
  • application.properties -> all application properties
  • pom.xml file -> Includes all the dependencies required

MVC

Model [M] -> User and Contact [ One User have many contacts]
View [V] -> View pages [.html] files in our cases
Controller [C] -> Holds all the required business logic

Run Using docker [for APP using docker-compose]

docker-compose up


Deploy full stack Spring Boot application in elastic bean stalk [checkout to local branch]