All Projects → hendisantika → kotlin-postgres

hendisantika / kotlin-postgres

Licence: other
A Simple CRUD API using Spring Boot Application using PostgreSQL Database

Programming Languages

kotlin
9241 projects

Projects that are alternatives of or similar to kotlin-postgres

Spring5Certification
Spring Certification: This repository contains my examples and some best references to prepare the Spring 5 certification
Stars: ✭ 30 (+50%)
Mutual labels:  springframework, spring-mvc, spring-data-jpa
Spring Mvc Thymeleaf Crud
Spring MVC CRUD Application with Thymeleaf, HTML5, CSS3 and Bootstrap
Stars: ✭ 14 (-30%)
Mutual labels:  springframework, spring-mvc, spring-data-jpa
Spring Petclinic Rest
REST version of the Spring Petclinic sample application
Stars: ✭ 257 (+1185%)
Mutual labels:  springframework, spring-mvc, spring-data-jpa
Springboard
Spring Boot based production grade starter kit.
Stars: ✭ 59 (+195%)
Mutual labels:  springframework, spring-mvc, spring-data-jpa
Spring Framework Petclinic
A Spring Framework application based on JSP, Spring MVC, Spring Data JPA, Hibernate and JDBC
Stars: ✭ 251 (+1155%)
Mutual labels:  springframework, spring-mvc, spring-data-jpa
Spring
Personal notes of preparation to Spring 5 Professional Certification
Stars: ✭ 35 (+75%)
Mutual labels:  springframework, spring-mvc, spring-data-jpa
BusinessInfrastructurePlatformGroupVersion
A java web project based on Spring Boot using MySQL, Spring MVC, Hibernate, Spring Data JPA, Query DSL, Lombok, Logback, etc.
Stars: ✭ 90 (+350%)
Mutual labels:  springframework, spring-mvc, spring-data-jpa
gro-light-automation
A raspberry pi project to automate hydroponics with relays and data sensors through a web application
Stars: ✭ 44 (+120%)
Mutual labels:  springframework, spring-mvc, spring-data-jpa
Spring Cloud Flycloud
🔥🔥🔥FlyClould 微服务实战项目框架,在该框架中,包括了用 Spring Cloud 构建微服务的一系列基本组件和框架,对于后台服务框架的搭建有很大的参考价值,大家可以参考甚至稍加修改可以直接应用于自己的实际的项目开发中,该项目没有采用Maven进行项目构建,Maven通过xml进行依赖管理,导致整个配置文件太过臃肿,另外灵活性也不是很强,所以我采用Gradle进行项目构建和依赖管理,在FlyTour项目中我们见证了Gradle的强大,通过简单的一些配置就可以轻松的实现组件化的功能。该项目共有11个Module工程。其中10个位微服务工程,这10个微服务工程构成了一个完整的微服务系统,微服务系统包含了8个基础服务,提供了一整套微服务治理功能,他们分别是配置中心module_c…
Stars: ✭ 1,514 (+7470%)
Mutual labels:  springframework, spring-mvc, spring-data-jpa
spring-boot-jpa-rest-demo-filter-paging-sorting
Spring Boot Data JPA with Filter, Pagination and Sorting
Stars: ✭ 70 (+250%)
Mutual labels:  spring-mvc, spring-data-jpa
Spring Rest Exception Handler
A convenient Spring MVC exception handler for RESTful APIs.
Stars: ✭ 351 (+1655%)
Mutual labels:  springframework, spring-mvc
Search Spring Boot Starter
ElasticSearch封装基于ES版本6.4.2,极大简化了ES操作难度
Stars: ✭ 23 (+15%)
Mutual labels:  springframework, spring-data-jpa
Spring-Boot-2
Spring Boot 2.x examples
Stars: ✭ 33 (+65%)
Mutual labels:  spring-mvc, spring-data-jpa
Mini Spring
mini-spring是简化版的spring框架,能帮助你快速熟悉spring源码和掌握spring的核心原理。抽取了spring的核心逻辑,代码极度简化,保留spring的核心功能,如IoC和AOP、资源加载器、事件监听器、类型转换、容器扩展点、bean生命周期和作用域、应用上下文等核心功能。
Stars: ✭ 698 (+3390%)
Mutual labels:  springframework, spring-mvc
loterias-api
API de Resultados das Loterias CAIXA
Stars: ✭ 52 (+160%)
Mutual labels:  springframework, spring-data-jpa
Library
Online Library Management. User can search, check in, checkout book. System adds fines automatically if the book is not checked in by due date
Stars: ✭ 27 (+35%)
Mutual labels:  spring-mvc, spring-data-jpa
spring-boot-shop-sample
My first web application using Spring Boot framework.
Stars: ✭ 66 (+230%)
Mutual labels:  spring-mvc, spring-data-jpa
Ssm Demo
🍌Spring+SpringMVC+Mybatis+easyUI实现简单的后台管理系统
Stars: ✭ 1,639 (+8095%)
Mutual labels:  springframework, spring-mvc
spring-boot-mongo-docker
Spring Boot, Mongo and Docker. Run all with a single command.
Stars: ✭ 16 (-20%)
Mutual labels:  springframework, spring-data-jpa
spring02
Spring MVC 연습
Stars: ✭ 17 (-15%)
Mutual labels:  springframework, spring-mvc

Spring Boot Kotlin PostgreSQL

Open your terminal then type this :

mvn clean spring-boot:run

Open your browser :

  1. Save Data

    http://localhost:8080/save

  2. Find All

    http://localhost:8080/findAll
    
     [
        {
            "firstName": "Hendi",
            "lastName": "Santika",
            "id": 1
          },
          {
            "firstName": "Uzumaki",
            "lastName": "Naruto",
            "id": 2
          },
          {
            "firstName": "Uchiha",
            "lastName": "Sasuke",
            "id": 3
          },
          {
            "firstName": "Haruno",
            "lastName": "Sakura",
            "id": 4
          },
          {
            "firstName": "Hatake",
            "lastName": "Kakashi",
            "id": 5
          }
     ]
    
    
  3. Find By Id

    http://localhost:8080/findById/1

  4. Find By Lastname

    http://localhost:8080/findByLastname/Kakashi

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].