TechEazy Consultingblog.techeazyconsulting.com·Aug 27, 2024Mastering Spring Boot MVC and REST APIs: A Comprehensive GuideDive deep into the core concepts of Spring Boot’s MVC and REST architecture in this blog. Learn how to build scalable web applications, structure RESTful APIs, and handle essential interview topics such as Inversion of Control (IoC), Dependency Injec...DiscussMastering Backend Development with Java, Spring, and AWSSpringboot
Prashant Baleprashbale.hashnode.dev·Aug 2, 2024Spring MVC Best Practices with Code Snippets1. Use Constructor Injection Prefer constructor injection over field injection for better testability and immutability. Constructor injection ensures that the dependencies are provided when the object is created, making it easier to test and ensuring...DiscussSpringboot
Mohanish Khambadkarmohanish5744.hashnode.dev·Jul 29, 2024Deploying Spring MVC Project on AWS EC2 using AWS RDS.The steps to install an AWS project on AWS EC2 are as follows: Launch an EC2 instance, install HTTPD, and start. Install Apache Tomcat on EC2. Install JAVA JDK on EC2. Allow Traffic for the below requests: Apache Tomcat: 8080 HTTPS -> 443 HTTP...Discuss·7 likes·31 readsDevops
Shubham Sourabhvampirepapi.hashnode.dev·Jun 25, 2024Spring MVC Interview Asked Questions1. What is Model 1 architecture? Model 1 Architecture is an early design pattern for developing web applications. In this architecture, JSP (JavaServer Pages) plays a central role, handling both the presentation and the business logic. As you can se...Discuss·10 likesSpring Interview Guidespringmvc
FullStackJavafullstackjava.hashnode.dev·May 22, 2024Java Spring vs Spring Boot - Understanding the DifferenceSpring is a comprehensive programming and configuration model or framework for building robust Java applications. It provides a comprehensive programming and configuration model that encompasses almost every aspect of an enterprise application. Sprin...DiscussSpringboot
Nipun Hegdecodecloudcapital.hashnode.dev·May 18, 2024Spring Security Basics: A Simple Guide for NewbiesHey there! Today, we're going to learn about something called Spring Security. Imagine you have a magical castle (your web application) and you want to keep it safe from dragons and trolls (hackers and unauthorized users). Spring Security is like hav...DiscussSpringboot
Akshay Baviskarakshaybaviskar.hashnode.dev·Feb 22, 2024Unlocking the Power of Spring MVC: A Hands-on Basic Guide to the Dispatcher ServletIn the world of web development, the dispatcher servlet plays a crucial role in Spring MVC framework. It acts as a front controller, responsible for handling all incoming Http requests and dispatching them to a appropriate handlers for processing. Le...Discuss·67 readsspringmvc
xing liubigtomato.hashnode.dev·Feb 7, 2024Spring mvc interview. What is MVC MVC is a design pattern. M for model, V for view and C for controller . What are the components for . Model contains the business logic and data access. The realisation of model using the ORM based frameworks hibernate, spring jpa and d...Discuss·65 readsspringmvc
Syed Rizwansyedrizwan.hashnode.dev·Oct 27, 2023What is Monolithic Application?The Benefits of Monolithic Applications In the world of software development, the term "monolithic application" has often been overshadowed by the growing popularity of microservices and containerization. While these newer architectural paradigms cer...Discussspringmvc
yash rajyash211.hashnode.dev·Jul 30, 2023Spring Web MVCIntroduction There are two ways to develop java based web applications which are Model 1 architecture and Model 2 architecture. Model 1 architecture In this architecture, either servlet or JSP is used as the main component of the web application If...Discussspringmvc