├── README.md ├── angular-17-client ├── .editorconfig ├── .gitignore ├── README.md ├── angular-17-crud-example.png ├── angular.json ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── components │ │ │ ├── add-tutorial │ │ │ │ ├── add-tutorial.component.css │ │ │ │ ├── add-tutorial.component.html │ │ │ │ ├── add-tutorial.component.spec.ts │ │ │ │ └── add-tutorial.component.ts │ │ │ ├── tutorial-details │ │ │ │ ├── tutorial-details.component.css │ │ │ │ ├── tutorial-details.component.html │ │ │ │ ├── tutorial-details.component.spec.ts │ │ │ │ └── tutorial-details.component.ts │ │ │ └── tutorials-list │ │ │ │ ├── tutorials-list.component.css │ │ │ │ ├── tutorials-list.component.html │ │ │ │ ├── tutorials-list.component.spec.ts │ │ │ │ └── tutorials-list.component.ts │ │ ├── models │ │ │ ├── tutorial.model.spec.ts │ │ │ └── tutorial.model.ts │ │ └── services │ │ │ ├── tutorial.service.spec.ts │ │ │ └── tutorial.service.ts │ ├── assets │ │ └── .gitkeep │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ └── styles.css ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json ├── spring-boot-angular-17-postgresql-example-crud.png └── spring-boot-server ├── .gitignore ├── .mvn └── wrapper │ ├── MavenWrapperDownloader.java │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── README.md ├── mvnw ├── mvnw.cmd ├── pom.xml └── src ├── main ├── java │ └── com │ │ └── bezkoder │ │ └── spring │ │ └── jpa │ │ └── postgresql │ │ ├── SpringBootJpaPostgresqlApplication.java │ │ ├── controller │ │ └── TutorialController.java │ │ ├── model │ │ └── Tutorial.java │ │ └── repository │ │ └── TutorialRepository.java └── resources │ └── application.properties └── test └── java └── com └── bezkoder └── spring └── jpa └── postgresql └── SpringBootJpaPostgresqlApplicationTests.java /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/README.md -------------------------------------------------------------------------------- /angular-17-client/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/angular-17-client/.editorconfig -------------------------------------------------------------------------------- /angular-17-client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/angular-17-client/.gitignore -------------------------------------------------------------------------------- /angular-17-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/angular-17-client/README.md -------------------------------------------------------------------------------- /angular-17-client/angular-17-crud-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/angular-17-client/angular-17-crud-example.png -------------------------------------------------------------------------------- /angular-17-client/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/angular-17-client/angular.json -------------------------------------------------------------------------------- /angular-17-client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/angular-17-client/package-lock.json -------------------------------------------------------------------------------- /angular-17-client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/angular-17-client/package.json -------------------------------------------------------------------------------- /angular-17-client/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/angular-17-client/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /angular-17-client/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular-17-client/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/angular-17-client/src/app/app.component.html -------------------------------------------------------------------------------- /angular-17-client/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/angular-17-client/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /angular-17-client/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/angular-17-client/src/app/app.component.ts -------------------------------------------------------------------------------- /angular-17-client/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/angular-17-client/src/app/app.module.ts -------------------------------------------------------------------------------- /angular-17-client/src/app/components/add-tutorial/add-tutorial.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/angular-17-client/src/app/components/add-tutorial/add-tutorial.component.css -------------------------------------------------------------------------------- /angular-17-client/src/app/components/add-tutorial/add-tutorial.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/angular-17-client/src/app/components/add-tutorial/add-tutorial.component.html -------------------------------------------------------------------------------- /angular-17-client/src/app/components/add-tutorial/add-tutorial.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/angular-17-client/src/app/components/add-tutorial/add-tutorial.component.spec.ts -------------------------------------------------------------------------------- /angular-17-client/src/app/components/add-tutorial/add-tutorial.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/angular-17-client/src/app/components/add-tutorial/add-tutorial.component.ts -------------------------------------------------------------------------------- /angular-17-client/src/app/components/tutorial-details/tutorial-details.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/angular-17-client/src/app/components/tutorial-details/tutorial-details.component.css -------------------------------------------------------------------------------- /angular-17-client/src/app/components/tutorial-details/tutorial-details.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/angular-17-client/src/app/components/tutorial-details/tutorial-details.component.html -------------------------------------------------------------------------------- /angular-17-client/src/app/components/tutorial-details/tutorial-details.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/angular-17-client/src/app/components/tutorial-details/tutorial-details.component.spec.ts -------------------------------------------------------------------------------- /angular-17-client/src/app/components/tutorial-details/tutorial-details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/angular-17-client/src/app/components/tutorial-details/tutorial-details.component.ts -------------------------------------------------------------------------------- /angular-17-client/src/app/components/tutorials-list/tutorials-list.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/angular-17-client/src/app/components/tutorials-list/tutorials-list.component.css -------------------------------------------------------------------------------- /angular-17-client/src/app/components/tutorials-list/tutorials-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/angular-17-client/src/app/components/tutorials-list/tutorials-list.component.html -------------------------------------------------------------------------------- /angular-17-client/src/app/components/tutorials-list/tutorials-list.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/angular-17-client/src/app/components/tutorials-list/tutorials-list.component.spec.ts -------------------------------------------------------------------------------- /angular-17-client/src/app/components/tutorials-list/tutorials-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/angular-17-client/src/app/components/tutorials-list/tutorials-list.component.ts -------------------------------------------------------------------------------- /angular-17-client/src/app/models/tutorial.model.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/angular-17-client/src/app/models/tutorial.model.spec.ts -------------------------------------------------------------------------------- /angular-17-client/src/app/models/tutorial.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/angular-17-client/src/app/models/tutorial.model.ts -------------------------------------------------------------------------------- /angular-17-client/src/app/services/tutorial.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/angular-17-client/src/app/services/tutorial.service.spec.ts -------------------------------------------------------------------------------- /angular-17-client/src/app/services/tutorial.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/angular-17-client/src/app/services/tutorial.service.ts -------------------------------------------------------------------------------- /angular-17-client/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular-17-client/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/angular-17-client/src/favicon.ico -------------------------------------------------------------------------------- /angular-17-client/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/angular-17-client/src/index.html -------------------------------------------------------------------------------- /angular-17-client/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/angular-17-client/src/main.ts -------------------------------------------------------------------------------- /angular-17-client/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/angular-17-client/src/styles.css -------------------------------------------------------------------------------- /angular-17-client/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/angular-17-client/tsconfig.app.json -------------------------------------------------------------------------------- /angular-17-client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/angular-17-client/tsconfig.json -------------------------------------------------------------------------------- /angular-17-client/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/angular-17-client/tsconfig.spec.json -------------------------------------------------------------------------------- /spring-boot-angular-17-postgresql-example-crud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/spring-boot-angular-17-postgresql-example-crud.png -------------------------------------------------------------------------------- /spring-boot-server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/spring-boot-server/.gitignore -------------------------------------------------------------------------------- /spring-boot-server/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/spring-boot-server/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /spring-boot-server/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/spring-boot-server/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /spring-boot-server/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/spring-boot-server/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /spring-boot-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/spring-boot-server/README.md -------------------------------------------------------------------------------- /spring-boot-server/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/spring-boot-server/mvnw -------------------------------------------------------------------------------- /spring-boot-server/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/spring-boot-server/mvnw.cmd -------------------------------------------------------------------------------- /spring-boot-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/spring-boot-server/pom.xml -------------------------------------------------------------------------------- /spring-boot-server/src/main/java/com/bezkoder/spring/jpa/postgresql/SpringBootJpaPostgresqlApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/spring-boot-server/src/main/java/com/bezkoder/spring/jpa/postgresql/SpringBootJpaPostgresqlApplication.java -------------------------------------------------------------------------------- /spring-boot-server/src/main/java/com/bezkoder/spring/jpa/postgresql/controller/TutorialController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/spring-boot-server/src/main/java/com/bezkoder/spring/jpa/postgresql/controller/TutorialController.java -------------------------------------------------------------------------------- /spring-boot-server/src/main/java/com/bezkoder/spring/jpa/postgresql/model/Tutorial.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/spring-boot-server/src/main/java/com/bezkoder/spring/jpa/postgresql/model/Tutorial.java -------------------------------------------------------------------------------- /spring-boot-server/src/main/java/com/bezkoder/spring/jpa/postgresql/repository/TutorialRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/spring-boot-server/src/main/java/com/bezkoder/spring/jpa/postgresql/repository/TutorialRepository.java -------------------------------------------------------------------------------- /spring-boot-server/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/spring-boot-server/src/main/resources/application.properties -------------------------------------------------------------------------------- /spring-boot-server/src/test/java/com/bezkoder/spring/jpa/postgresql/SpringBootJpaPostgresqlApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-angular-17-postgresql-example/HEAD/spring-boot-server/src/test/java/com/bezkoder/spring/jpa/postgresql/SpringBootJpaPostgresqlApplicationTests.java --------------------------------------------------------------------------------