Niaz Bin Sirajniazbinsiraj.hashnode.dev·Dec 16, 2024The Tale of an Enum and a BeanPropertyRowMapper: A Spring Developer's QuestIt was a quiet afternoon in my coding world when a peculiar bug showed up. I was working on a Spring-based web application, mapping database records to Java objects using BeanPropertyRowMapper. Everything seemed routine—until an enum property decided...41 readsSpring
Abrar Mirjeabrarmirje.hashnode.dev·Jul 7, 2024A Glimpse into Java's World Prior to Spring FrameworkBefore the Spring Framework, developing web applications in Java required using a mix of different libraries and frameworks. We had several technologies before the Spring Framework. Servlets and JSP (JavaServer Pages): For handling HTTP requests an...2 likes·48 readsSpring
Yash Saxenadevelopwithyash.hashnode.dev·Mar 5, 2024AI & Java : Integrating GPT with SpringBoot using SpringAI, Retrieval Augmented Generation(RAG) and PG Vector DatabaseIn today's dynamic software development landscape, staying ahead means integrating cutting-edge technologies seamlessly into our projects. Spring Boot, with its rapid application development capabilities, is a popular choice for building enterprise-l...403 readsSpringAi
Arijit Sarkararijit83sarkar.hashnode.dev·Feb 1, 2024JDBCTemplate In Spring Boot With Swagger OpenAPIIn this tutorial, we'll go over how to query or save data to already-existing database tables using JdbcTemplate and then expose those operations using REST APIs. Using JdbcTemplate, we can run queries and stored procedures from our JAVA code and gai...General Programming
Samsammoulem.hashnode.dev·Jan 26, 2024jOOQ vs JdbcTemplateA quick comparison between using jOOQ and Spring's JdbcTemplate to interact with a database. Introduction Not so long ago, I would have reached to Spring's JdbcTemplate to query databases.It's 'richer' than the JDBC API and it would have been my pref...73 readsDatabases with JavaJava
Vincent Tanerirevirial.hashnode.dev·Sep 1, 2022Spring Boot: Working With Database Using JDBCTemplateIntroduction In this tutorial, we'll learn how to connect a Spring Boot application with a relational database using JDBCTemplate. First, some background on why JDBCTemplate is used. In the Java world, the tool that's used to integrate a database wit...1 like·37 readsJava