Posts

Showing posts from August, 2021

Spring MVC JdbcTemplate Project Free Download

Below is the link to download, Spring MVC JdbcTemplate Project https://drive.google.com/file/d/16XaS0CmewfEwVMuhIig_XVCWCTu5eQQy/view?usp=sharing

Advanced Java Session 5 (Spring MVC)

Image
Spring MVC What is spring mvc ? 1.Spring mvc is a model view controller design pattern which contains a library within the Spring framework that simplifies handling HTTP requests and responses . 2.Model contails data, view contains ui (html, jsp etc) files, controller is a class which controls and redirect requests.     why we use spring mvc ? Separate roles  - The Spring MVC separates each role, where the model object, controller, command object, view resolver, DispatcherServlet, validator, etc. can be fulfilled by a specialized object. Powerful Configuration  - It provides a robust configuration for both framework and application classes that includes easy referencing across contexts, such as from web controllers to business objects and validators. Rapid development  - The Spring MVC facilitates fast and parallel development. Reusable business code  - Instead of creating new o...

Advanced Java session 0 (Software set up and links)

Image
Software set up and links for Advanced Java : Links and steps to download and install required softwares for advanced java development for windows 64 bit operating system.     Note (You can either use sts or eclipse and java 8   or java 11)     Link to download Java 8 : https://www.oracle.com/in/java/technologies/javase/javase-jdk8-downloads.html                                                                                                Link to download STS IDE: https://spring.io/tools ...

Advanced Java Session 3 (Practical of Spring Tight Coupling and Spring Loose Coupling)

1.STC (Spring tight coupling) practical.   Steps to create maven project to demonstrate spring tight coupling implementation.   Step 1. Create maven project (steps given for this in previous session).   Step 2. In pom file, Add required maven dependency and version of spring. < project xmlns = "http://maven.apache.org/POM/4.0.0"             xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance"             xsi:schemaLocation = "http://maven.apache.org/POM/4.0.0                                                              https://maven.apache.org/xsd/maven-4.0.0.xsd" >             < modelVersion > 4.0.0 </ modelV...