LakshmiPerumalmalalakshmi.hashnode.dev·Nov 19, 2024Spring Framework and Spring bootSpring Core: Spring is one of the most powerful frameworks in Java. Of course, there are many other frameworks like Struts and EJB, and on the database side, we have JPA. However, with the help of Spring, we can achieve everything in one framework. O...Discuss·10 likesSpringboot
Bruce Wellsblog.phpfui.com·Oct 21, 2024Implementing Active Records in PHP - Part 1Active Records are a defined Design Pattern with it’s own Wikipedia page! So why create another Active Record implementation? Pretty simple. The existing PHP Active Record implementations are bloated and slow and hard to configure. So here is how to ...DiscussPHP
Nitish Srinivasanitishs.hashnode.dev·Oct 16, 2024REST APIs and JPAREST APIS REST → Representational State Transfer API → Application Programming Interfaces Http Verb: GET → To just get the data from a server and look at it PUT → To modify the data POST → To create new data DELETE → To delete data ORM ORM → Object R...Discuss#SpringDataJPA
Alexander Arlund Nørgaardblog.alexnorgaard.dk·Sep 11, 2024Building an Events Application: Choosing the right toolsSo much water has flowed under the bridge since my last blog post. Mind you that I have been working quite a lot on this project, I just didn't get around to write about it. So, let's pick up where we left off! In my last post I talked about some of ...Discuss·26 readsgolang
Maheshwara sampathzcodeblog.hashnode.dev·Aug 27, 2024Building a CRUD API with Next.js and PrismaHi Everyone! In this blog post, we'll dive into building a backend API using Next.js and Prisma. We'll explore the basics of setting up a CRUD API and how these tools can work together. Let's get started! 🚀 What is Next.js and Prisma? Before we dive...Discuss·31 readsNext.js
Pulkitblogs.devpulkit.in·Aug 17, 2024Setting Up Prisma ORM with PostgreSQLTitle: Setting Up Prisma ORM with PostgreSQL Content: ORM stands for Object-Relational Mapping. It is a technique that allows developers to interact with a database using an object-oriented approach. Instead of writing raw SQL queries, you can use an...Discuss·4 likes·37 readsprisma
Anuj Kumar Upadhyayanuj1.hashnode.dev·Aug 6, 2024Using SQL Databases with Node.jsWelcome to Day 12 of our Node.js blog series! 🤔 Today, we'll explore the integration of SQL databases with Node.js. While NoSQL databases like MongoDB offer flexibility, SQL databases provide strong consistency, ACID (Atomicity, Consistency, Isolati...Discuss·10 likesNodejsNode.js
Hassan Refaatnerdxio.hashnode.dev·Jul 30, 2024I Hate ORMs: Hibernate EditionLet me explain why I don't like ORMs. They add a lot of abstraction, especially if you're already working with Java and Spring, which have tons of abstraction layers. Yes, ORMs are useful and powerful, but as the saying goes, with great power comes g...DiscussJava
Vaibhav Jadhavjadhav96.hashnode.dev·Jul 30, 2024ORM : Object Relational MappingObject-oriented programming languages use Object Relation Mapping (ORM) to interact with Structured Query Language (SQL), both of which are incompatible. The ORM layer maps a class to a table in a relational database, with its attributes matching the...Discuss·1 like·26 readsDjango
Pawan Spawanblog.hashnode.dev·Jul 29, 2024PRISMA: A Comprehensive GuideGetting Started with Prisma Here’s a step-by-step guide to get started with Prisma: Set Up a New Project Firstly, create a new project and navigate to the project directory: mkdir my-prisma-app cd my-prisma-app npm init -y Install Prisma and Depende...Discussprisma