Spring Web
Spring Web
—----------------------------------------------
The main purpose of Spring Web Module is to integrate some MVC based
framework applications to Spring Applications.
EX: Struts applications with Spring
EX: JSF applications with Spring
—---
—---
It is an outdated content in Spring Framework.
Spring WEB MVC is an alternative to the web Frameworks like Struts, JSF,....
Q)To prepare web applications, we already have Struts, JSF MVC based
frameworks then what is the requirement to use Spring WEB MVC ?
—----------------------------------------------------------------------
Ans:
—----
1. Struts, JSF are web frameworks, which are used to prepare and
execute only web applications.
Spring is able to have a very good focus on all the layers of the
enterprise Applications like Presentation layer[WEB Module, WEB MVC
Module], Business Layer[Core Module, AOP, Module, J2EE Module],
Persistence Layer[JDBC Module, ORM Module, Transactions Module].
3. Struts and JSF are not layered or moduled Frameworks.
5. Struts and JSF are more API dependent, because Struts and JSF are
using Action classes to prepare application logic, they require a more
predefined library.
6. In case of Struts and JSF Debugging and Testing are very much
difficult as they are more API dependent.
In the case of Spring Framework, Debugging and Testing are very simple
as it is less API dependent.
7. Struts and JSF are using only MVC and its co-related design
patterns.
Spring WEB MVC module is only using MVC and its co-related design
patterns, remaining modules of Spring Framework are using other design
patterns like IOC or Dependency Injection, Factory Design Pattern,
Singleton Design pattern,....
Spring Web MVC Features:
—------------------------
1. Spring WEB MVC contains a number of components like Controller, Validator,
Command object Form object,Model Object, DispatcherServlet, Handler Mapping,
View Resolver,........ to prepare web applications. Where each and every
component has their own responsibilities.
3. Spring WEB MVC has the Command and Form objects to reuse the business code
instead of extending the Framework provided API libraries.
4. Spring WEB MVC has very good data binding , data Validations,....
Services.
5. Spring WEB MVC is providing very good View Resolvers, Handler mapping
,.... in a customizable way in order to simplify the application development.
7. Spring WEB MVC allows all JSP and JSTL tag libraries along with its own
tag library.
To prepare User interface in spring web mvc applications Spring framework has
provided its own set of tag libraries.
In Spring Web mvc applications, the main responsibility of the web.xml file
is to provide the DispatcherServlet configurations like below.
Where the <servlet-name> tag will take the logical name of the
DispatcherServlet, with this name only we have to save the spring
configuration file.
Where <servlet-class> tag is able to provide the fully qualified name of the
DispatcherServlet class.
Where <load-on-startup> will take the load on startup value, it will make
ready DispatcherServlet at the time of Server startup, that is, At Server
startup DispatcherServlet loading, Instantiation and initialization will be
performed.
Where <url-pattern> tag is able to define the url pattern for the
DispatcherServlet.
IN general, in web applications there are three ways to define url patterns
for the Servlets.
In general, in MVC based web applications we will define URL Patterns for the
Controller Servlets by using either Directory Match Method or Extension Match
Method.
<web-app>
<servlet>
<servlet-name>dispatcherServlet</servlet-name>
<servlet-class>
org.springframework.web.servlet.DispatcherServlet
</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>dispatcherServlet</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
</web-app>
<web-app>
<servlet>
<servlet-name>dispatcherServlet</servlet-name>
<servlet-class>
org.springframework.web.servlet.DispatcherServlet
</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>dispatcherServlet</servlet-name>
<url-pattern>*.do</url-pattern>
</servlet-mapping>
</web-app>
DispatcherServlet:
—-----------------
The main responsibilities of the Front Controller in Spring WEB MVC is,
1. Getting a request from the client.
2. Identify the Business component or Model component that include
business logic.
3. Execute the Business logic which we have provided in the Business
component or in the mOdel component.
4. Identify the view component to generate dynamic response.
5. Forward request to the View Component.
When we start the Server , Server or Container will perform the following
actions.
1. Server will deploy the application.
2. At the time of application deployment, Container will recognize the
web.xml file and it will perform loading, parsing and reading the
content of the web.xml file.
3. Container will create a ServletContext object with the content of the
web.xml file.
When Container parsing web.xml file, Container will perform the following
actions.
1. Container will recognize the load-on-startup configuration in
DispatcherServlet configuration.
2. Container will perform DispatcherServlet Loading, Instantiation and
initialization.
When Container performs DispatcherServlet Initialization, DispatcherServlet
will perform the following actions.
1. DispactherServlet will recognize the WebApplicationContext container
class.
2. DispatcherServlet will load WebApplicationContext class, instantiate
and initialize.
When we submit a request from the client browser then Protocol will perform
the following actions.
1. Protocol will establish connection between client and Server on the
basis of the Server port number, Server IP address.
2. Protocol will create a RequestFormat with the Header part and Body
Part, where Header part is able to manage all the request headers and
Body Part is able to manage all request parameters.
3. Protocol will carry that request format to the Server.
When a Request is coming to the Server , Server will check whether it is the
request for any static resource or not, if it is not for static resources and
if the request is for dynamic resource then the Server will forward the
request to the Container, where the Container will perform the following
actions.
1. Container will take the request data like the URL pattern from Request
Format.
2. Container will search for Servlet COnfiguration with the client
submitted url Pattern, where COntainer will identify DispatcherServlet
as a Servlet for the URL pattern.
3. Container will execute doGet() or doPost() or,... methods depending on
the request type in DispatcherServlet.
When a request is coming to the DispatcherServlet , DispatcherServlet will
perform the following actions.
When Protocol receives a response from Main Server then it will perform the
following actions.
HandlerMapping:
—--------------
The main purpose of the Handler Mapping is to map the input requests to the
Handler class that can handle the request.
Spring Web MVC Framework has provided the following list of HandlerMapping
classes.
1. BeanNameUrlHandlerMapping
2. SimpleUrlHandlerMapping
3. ControllerClassNameHandlerMapping
4. CommonsPathMapHandlerMapping
BeanNameUrlHandlerMapping:
—--------------------------
It is a default Handler Mapping in Spring WEB MVC applications, it will be
used by the Spring Framework automatically when no HandlerMapping is
configured in the Spring Configuration File.
This HandlerMapping maps urls to the Beans with the names which are started
with /.
EX:
Ds-servlet.xml
<beans>
<bean name=”/welcome” class=”com.durgasoft.controillers.WelcomeController”/>
<bean name=”/hello” class=”com.durgasoft.controillers.HelloController”/>
<bean name=”/hi” class=”com.durgasoft.controillers.HiController”/>
<bean name=”handlermapping” class=”.....BeanNameUrlHandlerMapping”/>
</beans>
If we want to execute the above Controller classes then we have to use the
below urls at client browser.
http://localhost:8080/app/welcome
http://localhost:8080/app/hello
http://localhost:8080/app/hi
SimpleUrlHandlerMapping:
This Handler Mapping is able to map Handler class or Controller class by
matching the url path with the property key of the properties.
<beans>
<bean name=”addEmp” class=”com.durgasoft.controller.AddEmpController”/>
<bean name=”searchEmp”
class=”com.durgasoft.controller.SearchEmpController”/>
<bean name=”updateEmp”
class=”com.durgasoft.controller.UpdateEmpController”/>
<bean name=”handlerMapping”
class=”org.springframework.web.servlet.handler.SimpleUrlHandlerMapping”>
<property name=”mappings”>
<props>
<prop name=”add”>addEmp</prop>
<prop name=”search”>searchEmp</prop>
<prop name=”delete”>deleteEmp</prop>
</props>
</property>
</bean>
</beans>
To access the above controller classes we have to use the following URLs at
client browser.
http://localhost:8080/app/add
add—->addEmp—-->AddEmpController
http://localhost:8080/app/search
search—->searchEmp—-> SearchEmpController
http://localhost:8080/app/update
update—->updateEmp—-> UpdateEmpController
ControllerClassNameHandlerMapping:
—---------------------------------
This Handler mapping follows simple conventions for generating URL Path
Mappings from the class names of the Controller beans which are configured in
the Spring Configuration file or the annotated beans with the @Controller
annotation.
EX:
<beans>
<bean name=”welcome” class=”com.dss.controller.WelcomeController”/>
<bean name=”hello” class=”com.dss.controller.HelloController”/>
<bean name=”handlerMapping”
class=”org.springframework.web.servlet.mvc.support.ControllerClassNameHandler
Mapping”/>
</beans>
http://localhost:1010/app/welcome*
It is able to access WelcomeController .
http://localhost:1010/app/hello*
It is able to access HelloController
CommonsPathMapHandlerMapping:
This Handler Mapping is designed to recognize common metadata attributes of
type PathMap defined in the application controller and automatically
associated with the DispatcherServlet web application Context.
@PathMap(“/mycontroller”)
public class MyController implements Controller{
—-----
}
To access the above controller we have to use the following url.
http://localhost:8080/app/mycontroller
Controller Component:
—---------------------
The main purpose of the controller component is to manage the application
logic which we want to execute upon receiving requests from clients.
Where the Controller logic is to manage the Service layer methods access ,
where the Service layer is able to access Dao layer methods in order to
perform the operations.
In Spring Web MVC, all the Controller classes are the implementation classes
to the org.springframework.web.servlet.mvc.Controller interface.
The above Controller interface has provided the following method to manage
application logic.
public ModelAndView()
public ModelAndView(String viewName)
public ModelAndView(String viewName, Map model)
public ModelAndView(String viewName, HttpStatus status)
—--
—--
Command :
—---------
The main purpose of COmmand component is to manage form data at server side
applications.
EX:
public class User{
private String uname;
private String upwd;
setXxx() and getXxx()
}
ViewResolver:
—-------------
The main purpose of ViewResolver is to provide mapping between the view name
and the actual view JSP page name and location.
1. ViewResolver
2. ContentNegotiatingViewResolver
3. BeanNameViewResolver
4. UrlBasedViewResolver
5. InternalResourceViewResolver
6. FreeMarkerViewResolver
7. VelocityViewResolver
—---
—----
In Spring WEB MVC applications we must configure ViewResolver with the name
“viewResolver” inorder to map the view name and the name and location of the
View Page.
EX:
<beans>
—----
<bean name=”viewResolver” class=”…InternalResourceViewResolver”>
<property name=”suffix” value=”/WEB-INF”>
<property name=”prefix” value=”.jsp”/>
</bean>
</beans>
Spring Configuration File:
—-------------------------
The main purpose of the Spring COnfiguration file is to provide all the
configuration details of the bean components, Controller classes, Handler
Mapping classes, ViewResolver,....
ds-servlet.xml
<beans>
<bean name=”/welcome” class=”....WelcomeController”/>
<bean name=”/hello” class=”.....HelloController”/>
<bean name=”handlerMapping” class=”....BeanNameUrlHandlerMapping”/>
<bean name=”viewResolver” class=”....InternalResourceViewResolver”>
<property name=”prefix” value=”/WEB-INF”/>
<property name=”suffix” value=”.jsp”/>
</bean>
</beans>
Steps to prepare First Web Application by using Spring WEB MVC:
—--------------------------------------------------------------
1. Java Software,Tomcat Server,IDE
2. Create a Dynamic Web Project with MAVEN.
3. Prepare User Forms as per the requirement.
4. Prepare Controller classes, Services classes, DAOs as per the
requirement.
5. Create COnfiguration File
6. Edit web.xml file with DispatcherServlet Configuration
EX:
EX:
wish.jsp
<%@page isELIgnored="false" %>
<html>
<head>
<title>Insert title here</title>
</head>
<body>
<h1>
${message}
</h1>
</body>
</html>
WishController.java
package com.durgasoft.controller;
import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.mvc.Controller;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
@Override
public ModelAndView handleRequest(HttpServletRequest request,
HttpServletResponse response) throws Exception {
ModelAndView modelAndView = new
ModelAndView("wish","message","Hello User, Good Morning!");
return modelAndView;
}
ds-servlet.xml
web.xml
<servlet-class>org.springframework.web.servlet.DispatcherServlet</serv
let-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>ds</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
pom.xml
<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
http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.durgasoft</groupId>
<artifactId>app01</artifactId>
<packaging>war</packaging>
<version>0.0.1-SNAPSHOT</version>
<name>app01 Maven Webapp</name>
<url>http://maven.apache.org</url>
<properties>
<maven.compiler.source>1.17</maven.compiler.source>
<maven.compiler.target>1.17</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<!--
https://mvnrepository.com/artifact/org.springframework/spring-webmvc
-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>6.0.0</version>
</dependency>
<!--
https://mvnrepository.com/artifact/jakarta.servlet/jakarta.servlet-api
-->
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>6.0.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<finalName>app01</finalName>
</build>
</project>
EX:
index.jsp
<html>
<body>
<h2>
<a href="http://localhost:1111/app02/hello">Hello</a> <br><br>
<a href="http://localhost:1111/app02/welcome">Welcome</a>
</h2>
</body>
</html>
hello.jsp
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1" isELIgnored="false" %>
<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<h1>
${message}
</h1>
</body>
</html>
welcome.jsp
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1" isELIgnored="false" %>
<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<h1>
${message}
</h1>
</body>
</html>
HelloController.java
package com.durgasoft.app02.controllers;
import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.mvc.Controller;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
public class HelloController implements Controller {
@Override
public ModelAndView handleRequest(HttpServletRequest request,
HttpServletResponse response) throws Exception {
WelcomeController.java
package com.durgasoft.app02.controllers;
import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.mvc.Controller;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
@Override
public ModelAndView handleRequest(HttpServletRequest request,
HttpServletResponse response) throws Exception {
}
ds-servlet.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">
<bean name="/hello"
class="com.durgasoft.app02.controllers.HelloController"/>
<bean name="/welcome"
class="com.durgasoft.app02.controllers.WelcomeController"/>
<bean name="handlerMapping"
class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMappi
ng"/>
<bean name="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolv
er">
<property name="prefix" value="/WEB-INF/"/>
<property name="suffix" value=".jsp"/>
</bean>
</beans>
web.xml
<servlet-class>org.springframework.web.servlet.DispatcherServlet</serv
let-class>
</servlet>
<servlet-mapping>
<servlet-name>ds</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
pom.xml
<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
http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.durgasoft</groupId>
<artifactId>app02</artifactId>
<packaging>war</packaging>
<version>0.0.1-SNAPSHOT</version>
<name>app02 Maven Webapp</name>
<url>http://maven.apache.org</url>
<properties>
<maven.compiler.source>1.17</maven.compiler.source>
<maven.compiler.target>1.17</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<!--
https://mvnrepository.com/artifact/org.springframework/spring-webmvc
-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>6.0.0</version>
</dependency>
<!--
https://mvnrepository.com/artifact/jakarta.servlet/jakarta.servlet-api
-->
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>6.0.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<finalName>app02</finalName>
</build>
</project>
EX:
index.jsp
<%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"
%>
<!DOCTYPE html>
<html>
<head>
<title>JSP - Hello World</title>
</head>
<body>
<jsp:forward page="hellopage"/>
</body>
</html>
helloform.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 22-06-2023
Time: 07:31
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Title</title>
</head>
<body>
<form method="post" action="./hello">
<table align="center">
<tr>
<td>User Name</td>
<td><input type="text" name="uname"></td>
</tr>
<tr>
<td><input type="submit" value="SayHello"></td>
</tr>
</table>
</form>
</body>
</html>
hello.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 22-06-2023
Time: 07:34
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Title</title>
</head>
<body>
<h1 align="center">
Hello ${name}!.
</h1>
</body>
</html>
HelloPageController.java
package com.durgasoft.app03.controller;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.mvc.Controller;
public class HelloPageController implements Controller {
@Override
public ModelAndView handleRequest(HttpServletRequest request,
HttpServletResponse response) throws Exception {
return new ModelAndView("helloform");
}
}
HelloController.java
package com.durgasoft.app03.controller;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.mvc.Controller;
ds-servlet.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">
<bean name="/hellopage"
class="com.durgasoft.app03.controller.HelloPageController"/>
<bean name="/hello"
class="com.durgasoft.app03.controller.HelloController"/>
<bean name="handlermapping"
class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapp
ing"/>
<bean name="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResol
ver">
<property name="prefix" value="/"/>
<property name="suffix" value=".jsp"/>
</bean>
</beans>
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="https://jakarta.ee/xml/ns/jakartaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://jakarta.ee/xml/ns/jakartaee
https://jakarta.ee/xml/ns/jakartaee/web-app_5_0.xsd"
version="5.0">
<servlet>
<servlet-name>ds</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</ser
vlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>ds</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<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</modelVersion>
<groupId>com.durgasoft</groupId>
<artifactId>app03</artifactId>
<version>1.0-SNAPSHOT</version>
<name>app03</name>
<packaging>war</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<junit.version>5.9.2</junit.version>
</properties>
<dependencies>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>5.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<!--
https://mvnrepository.com/artifact/org.springframework/spring-webmvc
-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>6.0.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.3.2</version>
</plugin> </plugins>
</build>
</project>
index.jsp
<%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"
%>
<!DOCTYPE html>
<html>
<head>
<title>JSP - Hello World</title>
</head>
<body>
<jsp:forward page="loginform"/>
</body>
</html>
loginform.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 23-06-2023
Time: 07:22
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Login Form</title>
</head>
<body>
<form method="post" action="./login">
<table align="center">
<tr>
<td>User Name</td>
<td><input type="text" name="uname"></td>
</tr>
<tr>
<td>Password</td>
<td><input type="password" name="upwd"></td>
</tr>
<tr>
<td><input type="submit" value="Login"></td>
</tr>
</table>
</form>
</body>
</html>
success.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 23-06-2023
Time: 07:26
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java"
isELIgnored="false" %>
<html>
<head>
<title>SUCCESS PAGE</title>
</head>
<body>
<h1 align="center">
Hello ${name} , Your Login Success
</h1>
</body>
</html>
failure.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 23-06-2023
Time: 07:27
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java"
isELIgnored="false" %>
<html>
<head>
<title>Failure Page</title>
</head>
<body>
<h1 align="center">
Hello ${name}, Your Login Failure.
</h1>
</body>
</html>
LoginFormController.java
package com.durgasoft.app04.controlleres;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.mvc.Controller;
@Override
public ModelAndView handleRequest(HttpServletRequest request,
HttpServletResponse response) throws Exception {
return new ModelAndView("loginform");
}
}
LoginController.java
package com.durgasoft.app04.controlleres;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.mvc.Controller;
@Override
public ModelAndView handleRequest(HttpServletRequest request,
HttpServletResponse response) throws Exception {
String uname = request.getParameter("uname");
String upwd = request.getParameter("upwd");
String status = "";
if(uname.equals("durga") && upwd.equals("durga")){
status = "success";
}else{
status = "failure";
}
return new ModelAndView(status, "name", uname);
}
}
ds-servlet.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">
<bean name="/loginform"
class="com.durgasoft.app04.controlleres.LoginFormController"/>
<bean name="/login"
class="com.durgasoft.app04.controlleres.LoginController"/>
<bean name="handlerMapping"
class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapp
ing"/>
<bean name="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResol
ver">
<property name="prefix" value="/"/>
<property name="suffix" value=".jsp"/>
</bean>
</beans>
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="https://jakarta.ee/xml/ns/jakartaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://jakarta.ee/xml/ns/jakartaee
https://jakarta.ee/xml/ns/jakartaee/web-app_5_0.xsd"
version="5.0">
<servlet>
<servlet-name>ds</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</ser
vlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>ds</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<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</modelVersion>
<groupId>com.durgasoft</groupId>
<artifactId>app04</artifactId>
<version>1.0-SNAPSHOT</version>
<name>app04</name>
<packaging>war</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>
<junit.version>5.9.2</junit.version>
</properties>
<dependencies>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>5.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<!--
https://mvnrepository.com/artifact/org.springframework/spring-webmvc
-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>6.0.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.3.2</version>
</plugin> </plugins>
</build>
</project>
Controller Classes:
—------------------
The main purpose of the controller classes is to manage the application logic
to execute upon receiving requests from the client.
AbstractController:
—------------------
This controller class will be used to prepare the Controller class in the
Spring web mvc applications where no form data is submitted and where to
display the dynamic content by clicking on the hyperlinks.
EX: When we click on the “View Profiles” link or “Contectus” link,... we will
get the required data on the client browser.
wish.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 24-06-2023
Time: 08:09
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Title</title>
</head>
<body>
<h1 align="center" style="color: red;">
${message}
</h1>
</body>
</html>
WishController.java
package com.durgasoft.app05.controller;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.mvc.AbstractController;
import java.time.LocalTime;
public class WishController extends AbstractController {
@Override
protected ModelAndView handleRequestInternal(HttpServletRequest
request, HttpServletResponse response) throws Exception {
LocalTime localTime = LocalTime.now();
int hour = localTime.getHour();
String message = "Hello User, ";
if(hour < 12){
message = message + "Good Morning!";
}else if(hour < 17){
message = message + "Good Afternoon!";
}else{
message = message + "Good Evening!";
}
return new ModelAndView("wish", "message", message);
}
}
ds-servlet.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean name="/wish"
class="com.durgasoft.app05.controller.WishController"/>
<bean name="handlerMapping"
class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapp
ing"/>
<bean name="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResol
ver">
<property name="prefix" value="/"/>
<property name="suffix" value=".jsp"/>
</bean>
</beans>
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="https://jakarta.ee/xml/ns/jakartaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://jakarta.ee/xml/ns/jakartaee
https://jakarta.ee/xml/ns/jakartaee/web-app_5_0.xsd"
version="5.0">
<servlet>
<servlet-name>ds</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</ser
vlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>ds</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<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</modelVersion>
<groupId>com.durgasoft</groupId>
<artifactId>app05</artifactId>
<version>1.0-SNAPSHOT</version>
<name>app05</name>
<packaging>war</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>
<junit.version>5.9.2</junit.version>
</properties>
<dependencies>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>5.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<!--
https://mvnrepository.com/artifact/org.springframework/spring-webmvc
-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>6.0.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.3.2</version>
</plugin> </plugins>
</build>
</project>
The main purpose of this controller class is to display web pages without
processing requests.
This Controller class configuration must take an input property with the name
“viewName” and it will take the logical name of the view.
EX: Getting contact Page by clicking on Contact Us, getting about us page by
clicking on “About Us” links,...
EX:
index.jsp
<%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"
%>
<!DOCTYPE html>
<html>
<head>
<title>JSP - Hello World</title>
</head>
<body>
<jsp:forward page="home"></jsp:forward>
</body>
</html>
home.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 27-06-2023
Time: 07:29
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Title</title>
</head>
<body>
<h1 style="color: red;" align="center">
Durga Software Solutions
</h1>
<h3 align="center">
<a href="contactUs">Contact US</a>
<a href="aboutUs">About US</a>
</h3>
</body>
</html>
contactUs.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 27-06-2023
Time: 07:34
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>COntact Us</title>
</head>
<body>
<h1 style="color: red;" align="center">
ContactUS Page
</h1>
</body>
</html>
aboutUs.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 27-06-2023
Time: 07:35
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>About Us</title>
</head>
<body>
<h1 style="color: red;" align="center">
AboutUs Page
</h1>
</body>
</html>
ds-servlet.jsp
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">
<bean name="/home"
class="org.springframework.web.servlet.mvc.ParameterizableViewControl
ler">
<property name="viewName" value="home"/>
</bean>
<bean name="/contactUs"
class="org.springframework.web.servlet.mvc.ParameterizableViewControl
ler">
<property name="viewName" value="contactUs"/>
</bean>
<bean name="/aboutUs"
class="org.springframework.web.servlet.mvc.ParameterizableViewControl
ler">
<property name="viewName" value="aboutUs"/>
</bean>
<bean name="handlerMapping"
class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapp
ing"/>
<bean name="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResol
ver">
<property name="prefix" value="/"/>
<property name="suffix" value=".jsp"/>
</bean>
</beans>
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="https://jakarta.ee/xml/ns/jakartaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://jakarta.ee/xml/ns/jakartaee
https://jakarta.ee/xml/ns/jakartaee/web-app_5_0.xsd"
version="5.0">
<servlet>
<servlet-name>ds</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</ser
vlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>ds</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<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</modelVersion>
<groupId>com.durgasoft</groupId>
<artifactId>app06</artifactId>
<version>1.0-SNAPSHOT</version>
<name>app06</name>
<packaging>war</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>
<junit.version>5.9.2</junit.version>
</properties>
<dependencies>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>5.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<!--
https://mvnrepository.com/artifact/org.springframework/spring-webmvc
-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>6.0.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.3.2</version>
</plugin> </plugins>
</build>
</project>
MultiActionController:
—---------------------
In general, in web applications we will prepare a number of forms to perform
different operations of an entity like StudentAddForm.jsp,
StudentSearchForm.jsp, StudentUpdateForm.jsp, StudentDeleteForm.jsp,....
Studentaddform.jsp
SID:
SNAME:
SADDR:
ADD
Studentsearchform.jsp
SID:
SEARCH
Studentupdateform.jsp
SID:
SNAME:
SADDR:
UDATE
Studentdeleteform.jsp
SID:
DELETE
In the above context, if we submit requests with the URIs like add, search,
update, delete,... then all the requests must come to the StudentCOntroller
class only, for this we have to provide ‘/’ as name attribute value for
StudentController class configuration in Spring configuration file.
<beans>
—--
<bean name=”/*” class=”com.durgasoft.controller.StudentController”/>
—--
</beans>
EX:
index.jsp
<%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"
%>
<!DOCTYPE html>
<html>
<head>
<title>JSP - Hello World</title>
</head>
<body>
<jsp:forward page="home"/>
</body>
</html>
home.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 07-07-2023
Time: 22:45
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Home Page</title>
</head>
<body>
<h2 style="color: red;" align="center">
Student Management System
</h2>
<h3 align="center">
<a href="addpage">Student Add Form</a><br><br>
<a href="searchpage">Student Search Form</a><br><br>
<a href="updatepage">Student Update Form</a><br><br>
<a href="deletepage">Student Delete Form</a>
</h3>
</body>
</html>
addform.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 30-06-2023
Time: 08:46
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Student Add Form</title>
</head>
<body>
<h2 style="color: red;" align="center">Student Management System</h2>
<h3 style="color: blue;" align="center">Student Add Form</h3>
<form method="post" action="add">
<table align="center">
<tr>
<td>Student Id</td>
<td><input type="text" name="sid"></td>
</tr>
<tr>
<td>Student Name</td>
<td><input type="text" name="sname"></td>
</tr>
<tr>
<td>Student Address</td>
<td><input type="text" name="saddr"></td>
</tr>
<tr>
<td><input type="submit" value="ADD"></td>
</tr>
</table>
</form>
</body>
</html>
searchform.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 08-07-2023
Time: 08:07
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Student Search Form</title>
</head>
<body>
<h2 style="color: red;" align="center">Student Management System</h2>
<h3 style="color: blue;" align="center">Student Search Form</h3>
<form method="post" action="search">
<table align="center">
<tr>
<td>Student Id</td>
<td><input type="text" name="sid"></td>
</tr>
<tr>
<td><input type="submit" value="SEARCH"></td>
</tr>
</table>
</form>
</body>
</html>
updateform.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 08-07-2023
Time: 08:07
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Student Update Form</title>
</head>
<body>
<h2 style="color: red;" align="center">Student Management System</h2>
<h3 style="color: blue;" align="center">Student Update Form</h3>
<form method="post" action="editform">
<table align="center">
<tr>
<td>Student Id</td>
<td><input type="text" name="sid"></td>
</tr>
<tr>
<td><input type="submit" value="GetEditForm"></td>
</tr>
</table>
</form>
</body>
</html>
editform.jsp
<%@ page import="com.durgasoft.app07.beans.Student" %><%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 08-07-2023
Time: 08:38
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%!
Student student = null;
%>
<%
student = (Student) request.getAttribute("student");
%>
<html>
<head>
<title>Student Edit Form</title>
</head>
<body>
<h2 style="color: red;" align="center">Student Management System</h2>
<h3 style="color: blue;" align="center">Student Edit Form</h3>
<form method="post" action="update">
<table align="center">
<tr>
<td>Student Id</td>
<td><%=student.getSid()%><input type="hidden" name="sid"
value='<%=student.getSid()%>'></td>
</tr>
<tr>
<td>Student Name</td>
<td><input type="text" name="sname"
value='<%=student.getSname()%>'></td>
</tr>
<tr>
<td>Student Address</td>
<td><input type="text" name="saddr"
value='<%=student.getSaddr()%>'></td>
</tr>
<tr>
<td><input type="submit" value="UPDATE"></td>
</tr>
</table>
</form>
</body>
</html>
deleteform.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 10-07-2023
Time: 07:30
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Student Delete Page</title>
</head>
<body>
<h2 style="color: red;" align="center">Student Management System</h2>
<h3 style="color: blue;" align="center">Student Delete Form</h3>
<form method="post" action="delete">
<table align="center">
<tr>
<td>Student Id</td>
<td><input type="text" name="sid"></td>
</tr>
<tr>
<td><input type="submit" value="DELETE"></td>
</tr>
</table>
</form>
</body>
</html>
status.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 30-06-2023
Time: 08:50
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java"
isELIgnored="false" %>
<html>
<head>
<title>Status Page</title>
</head>
<body>
<h1 style="color: red;" align="center">
${message}
</h1>
</body>
</html>
Student.java
package com.durgasoft.app07.beans;
StudentDao.java
package com.durgasoft.app07.dao;
import com.durgasoft.app07.beans.Student;
StudentDaoImpl.java
package com.durgasoft.app07.dao;
import com.durgasoft.app07.beans.Student;
import org.springframework.jdbc.core.JdbcTemplate;
import java.util.List;
@Override
public String add(Student student) {
int rowCount = jdbcTemplate.update("insert into student
values('"+student.getSid()+"','"+student.getSname()+"','"+student.get
Saddr()+"')");
String status = "";
if(rowCount == 1){
status = "success";
}else{
status = "failure";
}
return status;
}
@Override
public Student search(String sid) {
List<Student> stdList = jdbcTemplate.query("select * from student
where SID = '"+sid+"'", (rs, rowNum)->{
Student std = new Student();
std.setSid(rs.getString("SID"));
std.setSname(rs.getString("SNAME"));
std.setSaddr(rs.getString("SADDR"));
return std;
});
return stdList.isEmpty()?null:stdList.get(0);
}
@Override
public String update(Student student) {
int rowCount = jdbcTemplate.update("update student set SNAME =
'"+student.getSname()+"', SADDR = '"+student.getSaddr()+"' where SID
= '"+student.getSid()+"'");
String status = "";
if(rowCount == 1){
status = "success";
}else{
status = "failure";
}
return status;
}
@Override
public String delete(String sid) {
String status = "";
int rowCount = jdbcTemplate.update("delete from student where SID =
'"+sid+"'");
if(rowCount == 1){
status = "success";
}else{
status = "failure";
}
return status;
}
StudentService.java
package com.durgasoft.app07.service;
import com.durgasoft.app07.beans.Student;
StudentServiceImpl.java
package com.durgasoft.app07.service;
import com.durgasoft.app07.beans.Student;
import com.durgasoft.app07.dao.StudentDao;
@Override
public String addStudent(Student student) {
return studentDao.add(student);
}
@Override
public Student searchStudent(String sid) {
return studentDao.search(sid);
}
@Override
public String updateStudent(Student student) {
return studentDao.update(student);
}
@Override
public String deleteStudent(String sid) {
return studentDao.delete(sid);
}
}
StudentController.java
package com.durgasoft.app07.controller;
import com.durgasoft.app07.beans.Student;
import com.durgasoft.app07.service.StudentService;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.web.servlet.ModelAndView;
import
org.springframework.web.servlet.mvc.multiaction.MultiActionController
;
}
public ModelAndView editform(HttpServletRequest request,
HttpServletResponse response)throws Exception{
String sid = request.getParameter("sid");
Student student = studentService.searchStudent(sid);
String message = "";
if(student == null){
message = "Student Does Not Exist";
return new ModelAndView("status", "message", message);
}else{
request.setAttribute("student", student);
return new ModelAndView("editform", "student", student);
}
}
public ModelAndView update(HttpServletRequest request,
HttpServletResponse response)throws Exception{
String sid = request.getParameter("sid");
String sname = request.getParameter("sname");
String saddr = request.getParameter("saddr");
Student student = new Student();
student.setSid(sid);
student.setSname(sname);
student.setSaddr(saddr);
String status = studentService.updateStudent(student);
String message = "";
if(status.equalsIgnoreCase("success")){
message = "Student Updation Success";
}else{
message = "Student Updation Failure";
}
return new ModelAndView("status", "message", message);
}
public ModelAndView delete(HttpServletRequest request,
HttpServletResponse response)throws Exception{
String sid = request.getParameter("sid");
Student student = studentService.searchStudent(sid);
String message = "";
if(student == null){
message = "Student Does Not Exist";
}else{
String status = studentService.deleteStudent(sid);
if(status.equalsIgnoreCase("success")){
message = "Student Deleted Successfully";
}else{
message = "Student Deletion Failure";
}
}
return new ModelAndView("status", "message", message);
}
ds-servlet.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">
<bean name="dataSource"
class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="com.mysql.cj.jdbc.Driver"/>
<property name="url" value="jdbc:mysql://localhost:3300/durgadb"/>
<property name="username" value="root"/>
<property name="password" value="root"/>
</bean>
<bean name="jdbcTemplate"
class="org.springframework.jdbc.core.JdbcTemplate">
<property name="dataSource" ref="dataSource"/>
</bean>
<bean name="studentDao"
class="com.durgasoft.app07.dao.StudentDaoImpl">
<property name="jdbcTemplate" ref="jdbcTemplate"/>
</bean>
<bean name="studentService"
class="com.durgasoft.app07.service.StudentServiceImpl">
<property name="studentDao" ref="studentDao"/>
</bean>
<bean name="/*"
class="com.durgasoft.app07.controller.StudentController">
<property name="studentService" ref="studentService"/>
</bean>
<bean name="/home"
class="org.springframework.web.servlet.mvc.ParameterizableViewControl
ler">
<property name="viewName" value="home"/>
</bean>
<bean name="/addpage"
class="org.springframework.web.servlet.mvc.ParameterizableViewControl
ler">
<property name="viewName" value="addform"/>
</bean>
<bean name="/searchpage"
class="org.springframework.web.servlet.mvc.ParameterizableViewControl
ler">
<property name="viewName" value="searchform"/>
</bean>
<bean name="/updatepage"
class="org.springframework.web.servlet.mvc.ParameterizableViewControl
ler">
<property name="viewName" value="updateform"/>
</bean>
<bean name="/deletepage"
class="org.springframework.web.servlet.mvc.ParameterizableViewControl
ler">
<property name="viewName" value="deleteform"/>
</bean>
<bean name="handlerMapping"
class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapp
ing"/>
<bean name="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResol
ver">
<property name="prefix" value="/"/>
<property name="suffix" value=".jsp"/>
</bean>
</beans>
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="https://jakarta.ee/xml/ns/jakartaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://jakarta.ee/xml/ns/jakartaee
https://jakarta.ee/xml/ns/jakartaee/web-app_5_0.xsd"
version="5.0">
<servlet>
<servlet-name>ds</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</ser
vlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>ds</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<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</modelVersion>
<groupId>com.durgasoft</groupId>
<artifactId>app07</artifactId>
<version>1.0-SNAPSHOT</version>
<name>app07</name>
<packaging>war</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>
<junit.version>5.9.2</junit.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>4.0.3.RELEASE</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<version>8.0.32</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>4.0.3.RELEASE</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>4.0.1</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.3.2</version>
</plugin> </plugins>
</build>
</project>
Command Controllers:
—--------------------
Command class is a Java bean class, it will be instantiated by the Spring Web
MVC Framework and it is able to manage the data which is submitted by a
client from a particular form.
The main intention of storing User data in COmmand objects at Server side.
1. To make available user form data on the server side in order to use in
Business logic.
2. To transfer user form data from Controller layer to View Layer we have
to use Command object.
3. To perform Server side data validations before using data in the
business logic we have to use COmmand object.
EX:
public class Student implements Serializable{
private String sid;
Private String snake;
Private String saddr;
setXXX() and getXXX()
}
In Spring WEB MVC applications, COntainer will create a separate COmmand
object for each and every request submitted by the User forms.
BaseCommandController:
It is an abstract class provided by Spring Framework, it is a base class to
all Command controllers , it can be used to store all the form properties
data from request object to Command object.
It is a deprecated class, it does not exist from the Spring 4.x version.
AbstractCommandCOntroller:
—---------------------------
It is an abstract class provided by Spring Framework with the following
methods.
When we submit a request with form data then this controller will create a
Command object with the form data and it passes the generated COmmand object
as parameter in the handle() method.
To prepare the Controller class we must define a user defined class , it must
be extended from AbstractController class and it must override the handle()
method.
EX:
<bean name=”/login” class=”copm.durgasoft.controllers.LoginController>
<property name=”commandName” value=”user”/>
<property name=”commandClass” value=”com.durgasoft.beans.User”/>
</bean>
Note: AbstractCommandController class existed up to Spring2.5 version, it was
removed from Spring 4.x version onwards.
AbstractFormController:
—-----------------------
It is able to populate form data from Request object to COmmand object and it
will pass the generated Command object to the handler method in the
controller class.
The shoeForm() method will be executed when we submit a GET request from the
client and it will prepare formName in order to generate a form at client
browser.
1. sessionForm : true
2. commandName: logical name
3. commandClass: Fully qualified Name of the Command class.
Note: It is a Deprecated class in Spring 3.x version and it has been removed
from the Spring 4.x version.
Spring MVC Tag Library:
—-----------------------
In general, to prepare the View part in MVC based applications we have to use
the view technologies like Html, CSS, Bootstrap, Java Script,.....
In Spring MVC Based web applications, to prepare the View part as per Spring
WEB MVC style , Spring WEB MVC has provided a separate set of tags called
Spring WEB MVC tags.
Spring WEB MVC has provided the tag library in the form of
spring-webmvc-version.jar file and to get Spring tag library support in the
JSP pages we have to use the following url to “uri” attribute in <%@taglib>
directive.
1. <form:form>
—-------------
It is the same as <form> tag in html, it will group up all the other html
components like Text Fields, Check boxes,....as a single unit inorder to
submit a request to the Server side application.
Where the “method” attribute will take an HTTP Method name like GET or
POST,...
Where “action” attribute will take an URI for the Controller action method.
Where “commandName” attribute will take the logical name of the command class
which we provided in the Command class configuration under controller class
configuration in Spring Configuration file.
EX:
<form:form method=”POST” action=”reg” commandName=”user”>
—--
</form:form>
Syntax
—------
<form:input path=”--” size=”--” value=”--”/>
Where “path” attributes will take a property name of the COmmand Class
inorder to store value in the Command Object.
Where the “value” attribute will take the default value in the Text field.
EX:
<form:form ….. >
User Name <form:input path=”uname” size=”20”/>
</form:form>
3. <form:password>
—------------------
It is the same as the password field in html, it will take password data from
the users.
Where “path” attribute will take a property name in the Command class inorder
to store value.
Where the “value” attribute will take the default value for the password
field.
<form:checkbox>
—-----------------
It will provide a check box in the user form to select an item.
Where “path” attribute will take a property name in command class in order to
store its value.
EX:
<form:form ….>
Graduate <form:checkbox path=”status” value=”Graduate”/>
</form:form>
<form:checkboxes>
—----------------
It will provide a group of checkboxes to select items.
Syntax:
<form:checkboxes path=”--” items=”--”/>
Where the “path” attribute will take a property name from the command class
it must be of String[] type.
Where items attribute will provide an expression including a property from
the COmmand class providing checkbox labels and values or a property data
which is generated by overriding referenceData() method in Controller class.
<form:form … >
User Qualifications <form:checkboxes path=”uqual” items=”{qual_List}”/>
</form>
<form:radioButton>
—-----------------
It is able to select a single item.
<form:radioButtons>
—------------------
It is able to create more than one radio button.
Where “path” attribute is able to take a property name of the command class
inorder to store selected value.
Where “items” is able to take the property name of the list or String []
which contains names of the radio buttons generated from referenceData()
method in the controller class.
<form:select>
—------------
It is able to provide a select box to display multiple items in order to
select single or multiple items.
<form:select path=”--” multiple=”--” items=”--”/>
Where the “path” attribute will take a property name from the command class,
in order to store the selected value / values.
Where “multiple” attribute will make the select box for single selection or
multiple selections.
If we don't want to get the data from the controller class then we have to
use the following tag multiple times under <form:select> tag.
Where items attribute is able to take an expression to get the values from
the referenceData() method of the controller class.
Or
<form:select path=”uskillSet” items=”${skillSet}” multiple=”multiple”/>
EX:
<form:select path=”uprofession” multiple=”single”>
<form:options items=”${uprofession}”/>
</form:select>
In Command Class:
public class User{
Private String uprofession;
setXXX(), getXXX()
}
In Controller class:
public class UserController extends SimpleFormController{
protected Map referenceData(HttpServletRequest request)throws Exception{
Map<String, Object> map = new HashMap<>();
List<String> list = new Arraylist<>();
list.add(“Student”);
list.add(“Employee”);
list.add(“Former”);
map.put(“uprofession”,list);
return map;
}
}
<form:textarea>
—-------------------
It is able to provide a text area to take multiple lines of data from Users.
Syntax:
<form:textarea path=”---”/>
Where the “path” attribute is able to take a property name in the command
class.
EX:
<form:textarea path=”uaddr”/>
In Command class:
public class User{
Private String uaddr;
setXXX(), getXXX()
}
<form:hidden>:
—---------------
It is able to prepare hidden fields in User form, it is not visible but it is
able to hold data.
Where the “path” attribute is able to take a property name in the command
class.
Where the “value” attribute is able to take a value to store in the command
class.
EX:
<form:hidden path=”sid” value=-”S-111”/>
In command class:
Public class Student{
private String sid;
setXXX(), getXXX()
}
SimpleFormController:
—--------------------
This controller class is able to support command classes in order to store
user form data in Command objects.
If we want to use this controller class in a Spring web mvc application then
we must configure it in the Spring Configuration file with the following
properties.
formView: It will take the form name to get the User form.
commandName: It will take a logical name to the command class.
commandClass: It will take the fully qualified name of the command class.
sessionForm: To keep COmmand objects in Session scope in order to reuse
command objects.
EX:
—---
index.jsp
<html>
<body>
<jsp:forward page="reg"/>
</body>
</html>
registratioinform.jsp
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@taglib uri="http://www.springframework.org/tags/form"
prefix="form"%>
<html>
<head>
<title>Title</title>
</head>
<body>
<h2 style="color: red;" align="center">Durga Software Solutions</h2>
<h3 style="color: blue;" align="center">User Registration Form</h3>
<form:form method="post" action="reg" commandName="user">
<table align="center">
<tr>
<td>User Name</td>
<td><form:input path="uname" size="20"/></td>
</tr>
<tr>
<td>User Password</td>
<td><form:password path="upwd" size="20"/></td>
</tr>
<tr>
<td>R U Married?</td>
<td><form:checkbox path="maritalStatus1"/></td>
</tr>
<tr>
<td>R U Single?</td>
<td><form:checkbox path="maritalStatus2" value="Single"/></td>
</tr>
<tr>
<td>User Qualifications</td>
<td><form:checkboxes path="uqual" items="${uqualList}"/></td>
</tr>
<tr>
<td>User Work Location</td>
<td><form:radiobuttons path="uworkLocation"
items="${uworkLocations}"/> </td>
</tr>
<tr>
<td>User Skill Set</td>
<td>
<form:select path="uskillSet" multiple="multiple">
<form:option value="C">C</form:option>
<form:option value="C++">C++</form:option>
<form:option value="Java">JAVA</form:option>
<form:option value="Python">Python</form:option>
<form:option value=".Net">.Net</form:option>
</form:select>
</td>
</tr>
<tr>
<td>User Hobbies</td>
<td><form:select path="uhobbies" items="${uhobbies}"/> </td>
</tr>
<tr>
<td>User Profession</td>
<td>
<form:select path="uprofession" multiple="single">
<form:options items="${uprofession}"/>
</form:select>
</td>
</tr>
<tr>
<td>User Address</td>
<td><form:textarea path="uaddr"/></td>
</tr>
<tr>
<td><input type="submit" value="Register"></td>
</tr>
</table>
</form:form>
</body>
</html>
Status.jsp
User.java
package com.durgasoft.command;
import java.io.Serializable;
UserController.java
package com.durgasoft.controller;
import com.durgasoft.command.User;
import org.springframework.ui.Model;
import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.mvc.SimpleFormController;
import javax.servlet.http.HttpServletRequest;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
@Override
protected ModelAndView onSubmit(Object command) throws Exception {
User user = (User)command;
return new ModelAndView("status", "user",user);
}
}
ds-servlet.xml
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">
pom.xml
<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
http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.durgasoft</groupId>
<artifactId>app08</artifactId>
<packaging>war</packaging>
<version>1.0-SNAPSHOT</version>
<name>app08 Maven Webapp</name>
<url>http://maven.apache.org</url>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<!--
https://mvnrepository.com/artifact/org.springframework/spring-webmvc
-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>3.2.18.RELEASE</version>
</dependency>
<!-- https://mvnrepository.com/artifact/javax.servlet/servlet-api -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>3.0-alpha-1</version>
<scope>provided</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/jstl/jstl -->
<dependency>
<groupId>jstl</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
</dependencies>
<build>
<finalName>app08</finalName>
</build>
</project>
AbstractWizardFormController:
—----------------------------
In general, in web applications, it is required to display more than one page
in order to complete a particular task.
In Spring WEB MVC, if we want to provide all web pages in Wizard we have to
use “AbstractWizardFormController”.
1. Prepare Multiple web pages with the buttons whose names like below.
EX:
index.jsp
<%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"
%>
<!DOCTYPE html>
<html>
<head>
<title>JSP - Hello World</title>
</head>
<body>
<jsp:forward page="welcomepage"/>
</body>
</html>
welcomepage.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 27-07-2023
Time: 06:38
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Title</title>
</head>
<body>
<h1 align="center">
<a href="reg">User Registration Form</a>
</h1>
</body>
</html>
form1.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 27-07-2023
Time: 06:40
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@taglib uri="http://www.springframework.org/tags/form"
prefix="form"%>
<html>
<head>
<title>Form1-Registration</title>
</head>
<body>
<h2 style="color: red;" align="center">Durga Software Solutions</h2>
<h3 style="color: blue;" align="center">User Registration Form</h3>
<form:form method="post" commandName="user">
<table align="center">
<tr>
<td>First Name</td>
<td><form:input path="fname"/></td>
</tr>
<tr>
<td>Last Name</td>
<td><form:input path="lname"/></td>
</tr>
<tr>
<td colspan="2">
<input type="submit" name="_target1" value="Next">
<input type="submit" name="_cancel" value="Cancel">
</td>
</tr>
</table>
</form:form>
</body>
</html>
form2.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 27-07-2023
Time: 06:48
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@taglib uri="http://www.springframework.org/tags/form"
prefix="form"%>
<html>
<head>
<title>Form2-Registration</title>
</head>
<body>
<h2 style="color: red;" align="center">Durga Software Solutions</h2>
<h3 style="color: blue;" align="center">User Registration Form</h3>
<form:form method="post" commandName="user">
<table align="center">
<tr>
<td>User Qualifications</td>
<td><form:input path="uqual"/></td>
</tr>
<tr>
<td>User Designation</td>
<td><form:input path="udes"/></td>
</tr>
<tr>
<td colspan="2">
<input type="submit" name="_target0" value="Previous">
<input type="submit" name="_target2" value="Next">
<input type="submit" name="_cancel" value="Cancel">
</td>
</tr>
</table>
</form:form>
</body>
</html>
form3.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 27-07-2023
Time: 06:51
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@taglib uri="http://www.springframework.org/tags/form"
prefix="form"%>
<html>
<head>
<title>Form3-Registration</title>
</head>
<body>
<h2 style="color: red;" align="center">Durga Software Solutions</h2>
<h3 style="color: blue;" align="center">User Registration Form</h3>
<form:form method="post" commandName="user">
<table align="center">
<tr>
<td>User Email Id</td>
<td><form:input path="uemail"/></td>
</tr>
<tr>
<td>User Mobile No</td>
<td><form:input path="umobile"/></td>
</tr>
<tr>
<td colspan="2">
<input type="submit" name="_target1" value="Previous">
<input type="submit" name="_finish" value="Finish">
<input type="submit" name="_cancel" value="Cancel">
</td>
</tr>
</table>
</form:form>
</body>
</html>
userdetails.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 28-07-2023
Time: 06:16
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>User Registration Details</title>
</head>
<body>
<h2 style="color: red;" align="center">Durga Software Solutions</h2>
<h3 style="color: blue;" align="center">User Registration Form</h3>
<table border="1" align="center">
<tr>
<td>User First Name</td>
<td>${user.fname}</td>
</tr>
<tr>
<td>User Last Name</td>
<td>${user.lname}</td>
</tr>
<tr>
<td>User Qualification</td>
<td>${user.uqual}</td>
</tr>
<tr>
<td>User Designation</td>
<td>${user.udes}</td>
</tr>
<tr>
<td>User Email Id</td>
<td>${user.uemail}</td>
</tr>
<tr>
<td>User Mobile No</td>
<td>${user.umobile}</td>
</tr>
</table>
<h3 align="center">
<a href="welcomepage">|Welcome Page|</a>
</h3>
</body>
</html>
User.java
package com.durgasoft.app09.beans;
UserController.java
package com.durgasoft.app09.controller;
import com.durgasoft.app09.beans.User;
import org.springframework.validation.BindException;
import org.springframework.web.servlet.ModelAndView;
import
org.springframework.web.servlet.mvc.AbstractWizardFormController;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
ds-servlet.xml
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">
<bean name="/welcomepage"
class="org.springframework.web.servlet.mvc.ParameterizableViewControl
ler">
<property name="viewName" value="welcomepage"/>
</bean>
<bean name="/reg"
class="com.durgasoft.app09.controller.UserController">
<property name="pages">
<list>
<value>form1</value>
<value>form2</value>
<value>form3</value>
</list>
</property>
<property name="commandName" value="user"/>
<property name="commandClass"
value="com.durgasoft.app09.beans.User"/>
</bean>
<bean name="handleMapping"
class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapp
ing"/>
<bean name="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResol
ver">
<property name="prefix" value="/"/>
<property name="suffix" value=".jsp"/>
</bean>
</beans>
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="https://jakarta.ee/xml/ns/jakartaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://jakarta.ee/xml/ns/jakartaee
https://jakarta.ee/xml/ns/jakartaee/web-app_5_0.xsd"
version="5.0">
<servlet>
<servlet-name>ds</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</ser
vlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>ds</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<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</modelVersion>
<groupId>com.durgasoft</groupId>
<artifactId>app09</artifactId>
<version>1.0-SNAPSHOT</version>
<name>app09</name>
<packaging>war</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>
<junit.version>5.9.2</junit.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>3.2.18.RELEASE</version>
</dependency>
<!-- https://mvnrepository.com/artifact/javax.servlet/servlet-api -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>3.0-alpha-1</version>
<scope>provided</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/jstl/jstl -->
<dependency>
<groupId>jstl</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency> </dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.3.2</version>
</plugin> </plugins>
</build>
</project>
@Controller:
Before Spring2.5 version , all controller classes must be configured in
Spring Configuration file , but from Spring2.5 version no need to configure
Controller classes in the Spring Configuration file, alternatively we can use
@Controller annotation for the controller classes. If we provide @Controller
along with any controller class then Spring Container will understand the
respective class is a controller class and the Spring Container is able to
create an object for the controller class.
The above tag will give information to the Container about the location where
these controller classes are available in order to scan and create objects.
EX:
@Controller
public class UserController{
—----
}
@RequestMapping:
This annotation is able to define the request urls based on the context root
and the Http Methods like GET, POST, HEAD,.... For the requests.
Note: @RequestMapping is Method Level and Class level Annotation, we can use
this either for classes or for methods.
Syntax:
@RequestMapping(value=”--”, method=---)
Where “value” is able to take the url pattern like “/login”, “/reg”,...
Where “method” is able to take the Http methods like GET, POST,... from
RequestMethod annotation.
EX:
@Controller
public class LoginController{
@RequestMapping(value=”/login”, method=RequestMethod.POST)
public ModelAndView checkLogin(HttpServlet request, httpServletResponse
response){
—----
return new ModelAndView(“success”);
}
}
Note: In the case of Annotations , the controller class methods are not
mandatory to return ModelAndView objects, simply they can return the viewName
in the form of String also.
@Controller
public class LoginController{
@RequestMapping(value=”/login”, method=RequestMethod.POST)
public String checkLogin(HttpServlet request, httpServletResponse
response){
—----
return “success”;
}
}
@RequestParam:
This annotation is able to bind the controller class methods parameters with
the request parameters which are provided by the users from User forms.
Syntax:
@RequestParam(“paramName”)
EX:
@Controller
public class LoginController{
@RequestMapping(value=”/login”, method=RequestMethod.POST)
public String checkLogin(@RequestParam(“username”)String uname,
@RequestParam(“userpwd”)String upwd){
—---
return “success”;
}
}
http://localhost:1010/app/login
Req Parameters: username=abc
userpwd=abc123
In the Controller class method we are able to use the ModelMap parameter to
manage the data which we want to share through a Session object. In the case
of ModelMap object, if we want to keep any attribute data, first we have to
define that attribute by using @SessionAttributes(--)
@SessionAttributes(“status”)
EX:
—---
index.jsp
<%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"
%>
<!DOCTYPE html>
<html>
<head>
<title>JSP - Hello World</title>
</head>
<body>
<jsp:forward page="loginpage"/>
</body>
</html>
loginform.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 29-07-2023
Time: 07:28
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Login Form</title>
</head>
<body>
<h2 style="color: red;" align="center">Durga Software Solutions</h2>
<h3 style="color: blue;" align="center">User Login Form</h3>
<form method="post" action="login">
<table align="center">
<tr>
<td>User Name</td>
<td><input type="text" name="uname"></td>
</tr>
<tr>
<td>Password</td>
<td><input type="password" name="upwd"></td>
</tr>
<tr>
<td><input type="submit" value="Login"></td>
</tr>
</table>
</form>
</body>
</html>
success.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 29-07-2023
Time: 07:33
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Success Page</title>
</head>
<body>
<h1 style="color: red"; align="center">User Login Success</h1>
<h3 align="center">
<a href="loginpage">|Login Form|</a>
</h3>
</body>
</html>
failure.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 29-07-2023
Time: 07:33
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Failure Page</title>
</head>
<body>
<h1 style="color: red"; align="center">User Login Failure</h1>
<h3 align="center">
<a href="loginpage">|Login Form|</a>
</h3>
</body>
</html>
LoginController.java
package com.durgasoft.app10;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
@Controller
public class LoginController {
@RequestMapping("/loginpage")
public String loginpage(){
return "loginform";
}
@RequestMapping(value = "/login", method = RequestMethod.POST)
public String checkLogin(@RequestParam("uname") String uname,
@RequestParam("upwd") String upwd){
String status = "";
if(uname.equals("durga") && upwd.equals("durga")){
status = "success";
}else{
status = "failure";
}
return status;
}
}
ds-servlet.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">
<context:component-scan base-package="com.durgasoft.*"/>
<bean name="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResol
ver">
<property name="prefix" value="/"/>
<property name="suffix" value=".jsp"/>
</bean>
</beans>
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="https://jakarta.ee/xml/ns/jakartaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://jakarta.ee/xml/ns/jakartaee
https://jakarta.ee/xml/ns/jakartaee/web-app_5_0.xsd"
version="5.0">
<servlet>
<servlet-name>ds</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</ser
vlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>ds</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<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</modelVersion>
<groupId>com.durgasoft</groupId>
<artifactId>app10</artifactId>
<version>1.0-SNAPSHOT</version>
<name>app10</name>
<packaging>war</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>
<junit.version>5.9.2</junit.version>
</properties>
<dependencies>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>5.0.0</version>
<scope>provided</scope>
</dependency>
<!--
https://mvnrepository.com/artifact/org.springframework/spring-webmvc
-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>6.0.11</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency> </dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.3.2</version>
</plugin> </plugins>
</build>
</project>
EX:
index.jsp
<%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"
%>
<!DOCTYPE html>
<html>
<head>
<title>JSP - Hello World</title>
</head>
<body>
<jsp:forward page="loginpage"/>
</body>
</html>
loginform.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 29-07-2023
Time: 07:28
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Login Form</title>
</head>
<body>
<h2 style="color: red;" align="center">Durga Software Solutions</h2>
<h3 style="color: blue;" align="center">User Login Form</h3>
<form method="post" action="login">
<table align="center">
<tr>
<td>User Name</td>
<td><input type="text" name="uname"></td>
</tr>
<tr>
<td>Password</td>
<td><input type="password" name="upwd"></td>
</tr>
<tr>
<td><input type="submit" value="Login"></td>
</tr>
</table>
</form>
</body>
</html>
status.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 29-07-2023
Time: 08:29
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>User Login Status</title>
</head>
<body>
<h1 style="color: red;" align="center">
User Login Status : <%= session.getAttribute("status")%>
</h1>
</body>
</html>
LoginController.java
package com.durgasoft.app10;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.SessionAttributes;
@Controller
@SessionAttributes("status")
public class LoginController {
@RequestMapping("/loginpage")
public String loginpage(){
return "loginform";
}
@RequestMapping(value = "/login", method = RequestMethod.POST)
public String checkLogin(@RequestParam("uname") String uname,
@RequestParam("upwd") String upwd, ModelMap modelMap){
String status = "";
if(uname.equals("durga") && upwd.equals("durga")){
modelMap.addAttribute("status", "User Login Success");
}else{
modelMap.addAttribute("status", "User Login Failure");
}
return "status";
}
}
ds-servlet.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">
<context:component-scan base-package="com.durgasoft.*"/>
<bean name="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResol
ver">
<property name="prefix" value="/"/>
<property name="suffix" value=".jsp"/>
</bean>
</beans>
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="https://jakarta.ee/xml/ns/jakartaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://jakarta.ee/xml/ns/jakartaee
https://jakarta.ee/xml/ns/jakartaee/web-app_5_0.xsd"
version="5.0">
<servlet>
<servlet-name>ds</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</ser
vlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>ds</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<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</modelVersion>
<groupId>com.durgasoft</groupId>
<artifactId>app10</artifactId>
<version>1.0-SNAPSHOT</version>
<name>app10</name>
<packaging>war</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>
<junit.version>5.9.2</junit.version>
</properties>
<dependencies>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>5.0.0</version>
<scope>provided</scope>
</dependency>
<!--
https://mvnrepository.com/artifact/org.springframework/spring-webmvc
-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>6.0.11</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency> </dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.3.2</version>
</plugin> </plugins>
</build>
</project>
Data Validations:
—----------------
The process of checking whether the data is valid or not before using data in
the business logic is called Data Validations.
To perform Client side Data Validations we have to use Java Script functions.
In general, to perform Server side Data Validations we will use JAVA code.
To perform Server side Data Validations, Spring has the following two
approaches.
2. Prepare properties file with all the validation messages in the form of
Key-Value pairs.
3. Configure Validator class and properties file with messageSource under
ResourceBundleMessageSource configuration.
4. Display Validation Messages in user forms by using <form:errors/> tag.
EX:
index.jsp
<%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"
%>
<!DOCTYPE html>
<html>
<head>
<title>JSP - Hello World</title>
</head>
<body>
<jsp:forward page="reg"/>
</body>
</html>
registrationform.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 30-07-2023
Time: 07:05
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ taglib uri="http://www.springframework.org/tags/form"
prefix="form"%>
<html>
<head>
<title>User Registration Form</title>
<style type="text/css">
.error{
color: red;
font-family: Consolas;
font-style: italic;
font-weight: bold;
font-size: large;
}
</style>
</head>
<body>
<h2 style="color: red;" align="center">Durga Software Solutions</h2>
<h3 style="color: blue;" align="center">User Registration Form</h3>
<form:form method="post" action="reg" commandName="user">
<table align="center">
<tr>
<td>User Name</td>
<td><form:input path="uname"/></td>
<td><form:errors path="uname" cssClass="error"/></td>
</tr>
<tr>
<td>User Password</td>
<td><form:password path="upwd"/></td>
<td><form:errors path="upwd" cssClass="error"/></td>
</tr>
<tr>
<td>User Age</td>
<td><form:input path="uage"/></td>
<td><form:errors path="uage" cssClass="error"/></td>
</tr>
<tr>
<td>User Email Id</td>
<td><form:input path="uemail"/></td>
<td><form:errors path="uemail" cssClass="error"/></td>
</tr>
<tr>
<td>User Mobile No</td>
<td><form:input path="umobile"/></td>
<td><form:errors path="umobile" cssClass="error"/></td>
</tr>
<tr>
<td><input type="submit" value="Registration"></td>
</tr>
</table>
</form:form>
</body>
</html>
registrationdetails.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 30-07-2023
Time: 07:13
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>User Registration Details</title>
</head>
<body>
<h2 style="color: red;" align="center">Durga Software Solutions</h2>
<h3 style="color: blue;" align="center">User Registration Form</h3>
<table border="1" align="center">
<tr>
<td>User Name</td>
<td>${user.uname}</td>
</tr>
<tr>
<td>User Password</td>
<td>${user.upwd}</td>
</tr>
<tr>
<td>User Age</td>
<td>${user.uage}</td>
</tr>
<tr>
<td>User Email Id</td>
<td>${user.uemail}</td>
</tr>
<tr>
<td>User Mobile No</td>
<td>${user.umobile}</td>
</tr>
</table>
</body>
</html>
validationMessages.properties
uname.required = User Name Is Required.
UserController.java
package com.durgasoft.app11.controller;
import com.durgasoft.app11.beans.User;
import org.springframework.validation.BindException;
import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.mvc.SimpleFormController;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
UserValidator.java
package com.durgasoft.app11.validator;
import com.durgasoft.app11.beans.User;
import org.springframework.validation.Errors;
import org.springframework.validation.Validator;
@Override
public boolean supports(Class<?> cls) {
return User.class.isAssignableFrom(cls);
}
@Override
public void validate(Object command, Errors errors) {
User user = (User) command;
if(user.getUage() == 0 ){
errors.rejectValue("uage", "uage.required");
}else {
if(user.getUage() < 18 || user.getUage() > 30){
errors.rejectValue("uage", "uage.range");
}
}
ds-servlet.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">
<bean name="messageSource"
class="org.springframework.context.support.ResourceBundleMessageSourc
e">
<property name="basename" value="validationMessages"/>
</bean>
<bean name="userValidator"
class="com.durgasoft.app11.validator.UserValidator"/>
<bean name="/reg"
class="com.durgasoft.app11.controller.UserController">
<property name="formView" value="registrationform"/>
<property name="validator" ref="userValidator"/>
<property name="commandName" value="user"/>
<property name="commandClass"
value="com.durgasoft.app11.beans.User"/>
</bean>
<bean name="handlerMapping"
class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapp
ing"/>
<bean name="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResol
ver">
<property name="prefix" value="/"/>
<property name="suffix" value=".jsp"/>
</bean>
</beans>
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="https://jakarta.ee/xml/ns/jakartaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://jakarta.ee/xml/ns/jakartaee
https://jakarta.ee/xml/ns/jakartaee/web-app_5_0.xsd"
version="5.0">
<servlet>
<servlet-name>ds</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</ser
vlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>ds</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<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</modelVersion>
<groupId>com.durgasoft</groupId>
<artifactId>app11</artifactId>
<version>1.0-SNAPSHOT</version>
<name>app11</name>
<packaging>war</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<junit.version>5.9.2</junit.version>
</properties>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>3.2.18.RELEASE</version>
</dependency>
<!--
https://mvnrepository.com/artifact/javax.servlet/servlet-api -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>3.0-alpha-1</version>
<scope>provided</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/jstl/jstl -->
<dependency>
<groupId>jstl</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.3.2</version>
</plugin>
</plugins>
</build>
</project>
1. @NotEmpty:
a. It will be applied to the bean properties or getter methods.
b. It will check whether the data exists or not in the respective
bean property, if the data does not exist then this annotation
will raise a Validation error.
c. It is applicable for only String type properties.
2. @NotNull:
a. It will be applied to the bean properties or getter method.
b. It will check whether the data/ value exists or not in the
respective bean property, if the data does not exist then this
annotation will raise a Validation error.
c. It is applicable for only Numeric type properties.
3. @Size:
a. It will be applied for the bean property or getter method.
b. It will check whether the data is as per the minimum length and
maximum length constraint or not.
c. It is applicable for only String type properties.
d. It will take 2 parameters like min, max.
4. @Range:
a. It will be applied to the bean properties and getter methods.
b. It will check whether the data is as per the range or not.
c. It is applicable for the NUmeric data types.
d. It should require two parameters like min, max.
5. @Pattern:
a. It will be applied to the property or getter method.
b. It will check whether the data is as per the provided regular
expression or not.
c. It will take an input parameter like ‘regexp’.
6. @Email:
a. It will be applied to the property or getter method.
b. It will check whether the data is as per the email id or not.
c. It does not require input parameters.
7. @DateTimeFormat:
a. It will be applied to the property or getter method.
b. It is applicable for the Date type properties.
c. It will check whether the data is as per the date format or not.
d. It will take an input parameter like “pattern” to represent date
format.
8. @Past:
a. It will be applied to the property or getter method.
b. It will check whether the date is a past date or not.
c. It is applicable for Date type property.
In Spring WEB MVC applications, if we want to use the above validations then
we have to use the following steps.
1. Create a Bean class and use all the validation related annotations.
2. Create Properties file and define validation messages in the properties
file or define Validation messages in the annotations directly.
3. Display Validation Messages in the web pages.
EX:
index.jsp
<%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"
%>
<!DOCTYPE html>
<html>
<head>
<title>JSP - Hello World</title>
</head>
<body>
<jsp:forward page="reg"/>
</body>
</html>
registrationform.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 30-07-2023
Time: 07:05
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ taglib uri="http://www.springframework.org/tags/form"
prefix="form"%>
<html>
<head>
<title>User Registration Form</title>
<style type="text/css">
.error{
color: red;
font-family: Consolas;
font-style: italic;
font-weight: bold;
font-size: large;
}
</style>
</head>
<body>
<h2 style="color: red;" align="center">Durga Software Solutions</h2>
<h3 style="color: blue;" align="center">User Registration Form</h3>
<form:form method="post" action="reg" modelAttribute="user">
<table align="center">
<tr>
<td>User Name</td>
<td><form:input path="uname"/></td>
<td><form:errors path="uname" cssClass="error"/></td>
</tr>
<tr>
<td>User Password</td>
<td><form:password path="upwd"/></td>
<td><form:errors path="upwd" cssClass="error"/></td>
</tr>
<tr>
<td>User Age</td>
<td><form:input path="uage"/></td>
<td><form:errors path="uage" cssClass="error"/></td>
</tr>
<tr>
<td>User Date Of Birth</td>
<td><form:input path="udob"/></td>
<td><form:errors path="udob" cssClass="error"/></td>
</tr>
<tr>
<td>User Email Id</td>
<td><form:input path="uemail"/></td>
<td><form:errors path="uemail" cssClass="error"/></td>
</tr>
<tr>
<td>User Mobile No</td>
<td><form:input path="umobile"/></td>
<td><form:errors path="umobile" cssClass="error"/></td>
</tr>
<tr>
<td><input type="submit" value="Registration"></td>
</tr>
</table>
</form:form>
</body>
</html>
registrationdetails.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 30-07-2023
Time: 07:13
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>User Registration Details</title>
</head>
<body>
<h2 style="color: red;" align="center">Durga Software Solutions</h2>
<h3 style="color: blue;" align="center">User Registration Form</h3>
<table border="1" align="center">
<tr>
<td>User Name</td>
<td>${user.uname}</td>
</tr>
<tr>
<td>User Password</td>
<td>${user.upwd}</td>
</tr>
<tr>
<td>User Age</td>
<td>${user.uage}</td>
</tr>
<tr>
<td>User Date Of Birth</td>
<td>${user.udob}</td>
</tr>
<tr>
<td>User Email Id</td>
<td>${user.uemail}</td>
</tr>
<tr>
<td>User Mobile No</td>
<td>${user.umobile}</td>
</tr>
</table>
</body>
</html>
User.java
package com.durgasoft.app11.beans;
import jakarta.validation.constraints.*;
import org.hibernate.validator.constraints.Range;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
@NotEmpty
private String uname;
@NotEmpty
@Size(min = 6, max = 10)
private String upwd;
@NotNull
@Range(min = 18, max = 25)
private int uage;
@NotNull
@DateTimeFormat(pattern = "dd/MM/yyyy")
@Past
private Date udob;
@NotEmpty
@Email
private String uemail;
@NotEmpty
@Pattern(regexp = "91-[0-9]{10}")
private String umobile;
UserController.java
package com.durgasoft.app11.controller;
import com.durgasoft.app11.beans.User;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
import jakarta.validation.Valid;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.validation.BeanPropertyBindingResult;
import org.springframework.validation.BindException;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.servlet.ModelAndView;
@Controller
@RequestMapping("/reg")
public class UserController{
@RequestMapping(method = RequestMethod.GET)
public String showPage(Model model){
model.addAttribute("user", new User());
return "registrationform";
}
@RequestMapping(method = RequestMethod.POST)
protected ModelAndView registration(@Valid User user,
BeanPropertyBindingResult errors, Model model ) throws Exception {
model.addAttribute("user", user);
if(errors.hasErrors()){
return new ModelAndView("registrationform","user", user);
}else{
return new ModelAndView("registrationdetails", "user",
user);
}
}
}
validationMessages.properties
typeMismatch = {0} is in invalid format.
NotEmpty.user.uname = User Name is Required.
ds-servlet.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc.xsd
">
<context:component-scan base-package="com.durgasoft.*"/>
<mvc:annotation-driven/>
<bean name="messageSource"
class="org.springframework.context.support.ResourceBundleMessageSourc
e">
<property name="basename" value="validationMessages"/>
</bean>
<bean name="handlerMapping"
class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapp
ing"/>
<bean name="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResol
ver">
<property name="prefix" value="/"/>
<property name="suffix" value=".jsp"/>
</bean>
</beans>
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="https://jakarta.ee/xml/ns/jakartaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://jakarta.ee/xml/ns/jakartaee
https://jakarta.ee/xml/ns/jakartaee/web-app_5_0.xsd"
version="5.0">
<servlet>
<servlet-name>ds</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</ser
vlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>ds</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<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</modelVersion>
<groupId>com.durgasoft</groupId>
<artifactId>app11</artifactId>
<version>1.0-SNAPSHOT</version>
<name>app11.0</name>
<packaging>war</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.target>1.17</maven.compiler.target>
<maven.compiler.source>1.17</maven.compiler.source>
<junit.version>5.9.2</junit.version>
</properties>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>6.0.11</version>
</dependency>
<!--
https://mvnrepository.com/artifact/javax.servlet/servlet-api -->
<dependency>
<groupId>org.hibernate.validator</groupId>
<artifactId>hibernate-validator</artifactId>
<version>8.0.1.Final</version>
</dependency>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>5.0.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.3.2</version>
</plugin>
</plugins>
</build>
</project>
Handler Mappings:
—-----------------
Handler Mapping is a component in Spring Web MVC, it will take the incoming
request URI and it will identify the mapped controller class through Spring
Configuration file and return the COntroller class details to
DispatcherServlet.
Spring WEB MVC has provided the number of predefined Handler mappings in a
package “org.springframwork.web.servlet.handler”.
1. BeanNameUrlHandlerMapping
2. SimpleUrlHandlerMapping
3. ControllerClassNameHandlerMapping
4. DefaultAnnotationHandlerMapping
BeanNameUrlHandlerMapping:
—-------------------------
In Spring WEB MVC applications,if we use XML configurations then
BeanNameUrlHandlerMapping is the default Handler mapping mechanism, it is not
required to be configured in the Spring Configuration file.
EX:
<beans>
<bean name=”handlerMapping”
class=”org.springframework….BeanNameUrlHandlerMapping”/>
<bean name=”/welcome” class=”com.durgasoft.controller.WelcomeController”/>
—----
</beans>
http://localhost:1010/app/welcome
SimpleUrlHandlerMapping:
—-----------------------
SimpleUrlHandlerMapping is able to map the incoming request with a particular
controller class name , it will find the controller class and it will provide
controller class details to the DispatcherServlet with the following actions.
EX:
<beans>
<bean name=”wishController” class=”com.dss.controller.WishController”/>
<bean name=”welcomeController”
class=”com.dss.controller.WelcomeController”/>
<bean name=”handlerMapping” class=”org…SimpleUrlHandlerMapping”>
<props>
<prop key=”/wish”>wishController</prop>
<prop key=”/welcome”>welcomeController</prop>
</props>
</bean>
</beans>
As per the above configuration, if we submit request with the URI “wish” then
SImpleUrlHandlerMapping will map this URI with the property name under the
SimpleUrlHandlerMapping , where it will get the property value that is
wishController , on the basis of the wishController it will find the
respective controller class name com.dss.controller.WishController .
EX:
index.jsp
<%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"
%>
<!DOCTYPE html>
<html>
<head>
<title>JSP - Hello World</title>
</head>
<body>
<jsp:forward page="hello"/>
</body>
</html>
helloform.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 03-08-2023
Time: 06:30
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Hello Form</title>
</head>
<body>
<h2 style="color: red;" align="center">Durga Software Solutions</h2>
<h3 style="color: blue" align="center">User Hello Form</h3>
<form method="post" action="wish">
<table align="center">
<tr>
<td>User Name</td>
<td><input type="text" name="uname"></td>
</tr>
<tr>
<td><input type="submit" value="SayHello"></td>
</tr>
</table>
</form>
</body>
</html>
wish.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 03-08-2023
Time: 06:35
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>User Wish Page</title>
</head>
<body>
<h2 style="color: red;" align="center">Durga Software
Solutions</h2>
<h3 style="color: blue" align="center">User Hello Status</h3>
<h1 style="color: green;" align="center">Hello ${uname}, Good
Morning!</h1>
</body>
</html>
HelloFormCOntroller.java
package com.durgasoft.app12.controller;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.mvc.Controller;
WishController.java
package com.durgasoft.app12.controller;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.mvc.Controller;
ds-servlet.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">
<bean name="helloFormController"
class="com.durgasoft.app12.controller.HelloFormController"/>
<bean name="wishController"
class="com.durgasoft.app12.controller.WishController"/>
<bean name="handlerMapping"
class="org.springframework.web.servlet.handler.SimpleUrlHandlerMappin
g">
<property name="mappings">
<props>
<prop key="/hello">helloFormController</prop>
<prop key="/wish">wishController</prop>
</props>
</property>
</bean>
<bean name="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResol
ver">
<property name="prefix" value="/"/>
<property name="suffix" value=".jsp"/>
</bean>
</beans>
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="https://jakarta.ee/xml/ns/jakartaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://jakarta.ee/xml/ns/jakartaee
https://jakarta.ee/xml/ns/jakartaee/web-app_5_0.xsd"
version="5.0">
<servlet>
<servlet-name>ds</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</ser
vlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>ds</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<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</modelVersion>
<groupId>com.durgasoft</groupId>
<artifactId>app12</artifactId>
<version>1.0-SNAPSHOT</version>
<name>app12</name>
<packaging>war</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>
<junit.version>5.9.2</junit.version>
</properties>
<dependencies>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>5.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<!--
https://mvnrepository.com/artifact/org.springframework/spring-webmvc
-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>6.0.11</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.3.2</version>
</plugin> </plugins>
</build>
</project>
ControllerClassNameHandlerMapping:
—---------------------------------
ControllerClassNameHandlerMapping is able to take the incoming request URI ,
find the controller class and send the controller class details to
DispatcherServlet with the following actions.
1. It will take incoming request uri value and it will remove any
extension if it has.
2. It will make the first letter as Uppercase letter in the incoming
request URI.
3. It will append Controller as a suffix to the request URI, now it is the
controller class name.
4. It will search for the controller class with the above convention and
send the controller class details to DispatcherServlet.
If we send a request with the URI value “wish” then the
ControllerClassHandlerMapping will search the controller class name
“WishController” , in this context the “name” attribute must not be provided
in the controller class configuration.
<beans>
<bean class=”com.durgasoft.controller.WishController”/>
<bean class=”com.durgasoft.controller.WelcomeController”/>
<bean name=”handlerMapping”
class=”org….ControllerClassNameHandlerMapping”/>
</beans>
wish—--> WishController
helloForm—--->HelloFormController
EX:
index.jsp
<%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"
%>
<!DOCTYPE html>
<html>
<head>
<title>JSP - Hello World</title>
</head>
<body>
<jsp:forward page="helloForm"/>
</body>
</html>
helloform.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 03-08-2023
Time: 06:30
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Hello Form</title>
</head>
<body>
<h2 style="color: red;" align="center">Durga Software Solutions</h2>
<h3 style="color: blue" align="center">User Hello Form</h3>
<form method="post" action="wish">
<table align="center">
<tr>
<td>User Name</td>
<td><input type="text" name="uname"></td>
</tr>
<tr>
<td><input type="submit" value="SayHello"></td>
</tr>
</table>
</form>
</body>
</html>
wish.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 03-08-2023
Time: 06:35
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>User Wish Page</title>
</head>
<body>
<h2 style="color: red;" align="center">Durga Software
Solutions</h2>
<h3 style="color: blue" align="center">User Hello Status</h3>
<h1 style="color: green;" align="center">Hello ${uname}, Good
Morning!</h1>
</body>
</html>
HelloFormController.java
package com.durgasoft.app12.controller;
//import jakarta.servlet.http.HttpServletRequest;
//import jakarta.servlet.http.HttpServletResponse;
import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.mvc.Controller;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
WishController.java
package com.durgasoft.app12.controller;
//import jakarta.servlet.http.HttpServletRequest;
//import jakarta.servlet.http.HttpServletResponse;
import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.mvc.Controller;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
ds-servlet.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">
<bean class="com.durgasoft.app12.controller.HelloFormController"/>
<bean class="com.durgasoft.app12.controller.WishController"/>
<bean name="handlerMapping"
class="org.springframework.web.servlet.mvc.support.ControllerClassNam
eHandlerMapping">
<property name="caseSensitive" value="true"/>
</bean>
<bean name="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResol
ver">
<property name="prefix" value="/"/>
<property name="suffix" value=".jsp"/>
</bean>
</beans>
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="https://jakarta.ee/xml/ns/jakartaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://jakarta.ee/xml/ns/jakartaee
https://jakarta.ee/xml/ns/jakartaee/web-app_5_0.xsd"
version="5.0">
<servlet>
<servlet-name>ds</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</ser
vlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>ds</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<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</modelVersion>
<groupId>com.durgasoft</groupId>
<artifactId>app12</artifactId>
<version>1.0-SNAPSHOT</version>
<name>app12</name>
<packaging>war</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<junit.version>5.9.2</junit.version>
</properties>
<dependencies>
<!--<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>5.0.0</version>
<scope>provided</scope>
</dependency> -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<!--
https://mvnrepository.com/artifact/org.springframework/spring-webmvc
-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>4.3.30.RELEASE</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.3.2</version>
</plugin> </plugins>
</build>
</project>
DefaultAnnotationHandlerMapping:
—---------------------------------
DefaultAnnotationHandlerMapping is a default Handler mapping class in Spring
WEB MVC if we use annotations, it is not required to configure in Spring
configuration file.
It will map the incoming request URI with the name provided along with the
@Requestmapping annotation which we provided just above of the Controller
class or Controller class method.
EX:
index.jsp
<%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"
%>
<!DOCTYPE html>
<html>
<head>
<title>JSP - Hello World</title>
</head>
<body>
<jsp:forward page="wish"/>
</body>
</html>
helloform.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 03-08-2023
Time: 06:30
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Hello Form</title>
</head>
<body>
<h2 style="color: red;" align="center">Durga Software Solutions</h2>
<h3 style="color: blue" align="center">User Hello Form</h3>
<form method="post" action="wish">
<table align="center">
<tr>
<td>User Name</td>
<td><input type="text" name="uname"></td>
</tr>
<tr>
<td><input type="submit" value="SayHello"></td>
</tr>
</table>
</form>
</body>
</html>
wish.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 03-08-2023
Time: 06:35
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>User Wish Page</title>
</head>
<body>
<h2 style="color: red;" align="center">Durga Software
Solutions</h2>
<h3 style="color: blue" align="center">User Hello Status</h3>
<h1 style="color: green;" align="center">Hello ${uname}, Good
Morning!</h1>
</body>
</html>
WishController.java
package com.durgasoft.app12.controller;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.servlet.ModelAndView;
//import org.springframework.web.servlet.mvc.Controller;
/*
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
*/
@Controller
@RequestMapping("/wish")
public class WishController{
@RequestMapping(method = RequestMethod.GET)
public String helloForm(){
return "helloform";
}
@RequestMapping(method = RequestMethod.POST)
public ModelAndView wish(HttpServletRequest request,
HttpServletResponse response) throws Exception {
String uname = request.getParameter("uname");
ds-servlet.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">
<context:component-scan base-package="com.durgasoft.*"/>
<bean name="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResol
ver">
<property name="prefix" value="/"/>
<property name="suffix" value=".jsp"/>
</bean>
</beans>
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="https://jakarta.ee/xml/ns/jakartaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://jakarta.ee/xml/ns/jakartaee
https://jakarta.ee/xml/ns/jakartaee/web-app_5_0.xsd"
version="5.0">
<servlet>
<servlet-name>ds</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</ser
vlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>ds</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<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</modelVersion>
<groupId>com.durgasoft</groupId>
<artifactId>app12</artifactId>
<version>1.0-SNAPSHOT</version>
<name>app12</name>
<packaging>war</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<junit.version>5.9.2</junit.version>
</properties>
<dependencies>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>5.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>6.0.11</version>
</dependency>
<!-- <dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>4.3.30.RELEASE</version>
</dependency>-->
<!--<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
</dependency>-->
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.3.2</version>
</plugin> </plugins>
</build>
</project>
HandlerInterceptor:
—------------------
IN general, in web applications, to provide preprocessing and post processing
services for the web resources like Servlets and JSPs we have to use
“Filters”.
In web applications, we are able to provide a single filter for multiple
servlet JSPs and we are able to provide multiple filters for single servlet
and JSP.
1. Container will check whether any filter or filters configured for the
respective Servlet or not.
2. If any filter or filters are configured for the Servlet then the
container will execute all the firsts first before executing the
servlet.
3. When a container is executing one filter, if the request data is
satisfying the filter constraints then the container will forward the
request to the next filter, if no next filter is available then the
container forward request to the Servlet directly.
4. In the case if the request data is not satisfying filter constraints
then the container will generate a response back to the client through
all the filters in backward direction which it has executed already.
5. If the respective Servlets executed successfully then the generated
response will be submitted to the client through all the filters in
backward direction.
This method will have logic to execute after executing the controller
class and after dispatching responses to the client.
This method will be executed only once for all the controller classes
that is after response rendering.
Note: In Spring WEB MVC applications, preHandle() method, postHandle()
methods are executed for each and every request , but afterCompletion()
method will be executed only once after response rendering.
If we provide more than one interceptor for a controller then all the
interceptors preHandle() method will be executed as per the interceptors
configuration in spring configuration file and postHandle() and
afterCompletion() methods are executed in reverse order of the Interceptors.
EX:
index.jsp
<%@ page contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8" %>
<!DOCTYPE html>
<html>
<head>
<title>JSP - Hello World</title>
</head>
<body>
<jsp:forward page="wish"/>
</body>
</html>
helloform.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 06-08-2023
Time: 08:03
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java"
%>
<html>
<head>
<title>User Hello Form</title>
</head>
<body>
<h2 style="color: red;" align="center">Durga Software
Solutions</h2>
<h3 style="color: blue" align="center">User Hello Form</h3>
<form method="post" action="wish">
<table align="center">
<tr>
<td>User Name</td>
<td><input type="text" name="uname"></td>
</tr>
<tr>
<td><input type="submit" value="SayHello"></td>
</tr>
</table>
</form>
</body>
</html>
wish.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 06-08-2023
Time: 08:04
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java"
%>
<html>
<head>
<title>User Wish Page</title>
</head>
<body>
<h2 style="color: red;" align="center">Durga Software
Solutions</h2>
<h3 style="color: blue" align="center">User Hello Status</h3>
<h1 style="color: green;" align="center">Hello ${uname}, Good
Morning!</h1>
<h2 style="color:red;" align="center">Request Processing
Details</h2>
<h3 align="center">
Start Time : ${startTime} <br>
End Time : ${endTime} <br>
Processing Time : ${processingTime}
</h3>
</body>
</html>
WishConroller.java
package com.durgasoft.app13.controller;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.servlet.ModelAndView;
//import org.springframework.web.servlet.mvc.Controller;
/*
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
*/
@Controller
@RequestMapping("/wish")
public class WishController {
@RequestMapping(method = RequestMethod.GET)
public String helloForm(){
return "helloform";
}
@RequestMapping(method = RequestMethod.POST)
public ModelAndView wish(HttpServletRequest request,
HttpServletResponse response) throws Exception {
String uname = request.getParameter("uname");
ProcessingTimeInterceptor.java
package com.durgasoft.app13.interceptors;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
import org.springframework.web.servlet.HandlerInterceptor;
import org.springframework.web.servlet.ModelAndView;
public class ProcessingTimeInterceptor implements
HandlerInterceptor {
@Override
public boolean preHandle(HttpServletRequest request,
HttpServletResponse response, Object handler) throws Exception
{
@Override
public void postHandle(HttpServletRequest request,
HttpServletResponse response, Object handler, ModelAndView
modelAndView) throws Exception {
long startTime = (long)
request.getAttribute("startTime");
long endTime = System.currentTimeMillis();
System.out.println("End Time : "+endTime);
long processingTime = endTime - startTime;
System.out.println("Processing Time :
"+processingTime);
request.removeAttribute("startTime");
modelAndView.addObject("startTime", startTime);
modelAndView.addObject("endTime", endTime);
modelAndView.addObject("processingTime",
processingTime);
@Override
public void afterCompletion(HttpServletRequest request,
HttpServletResponse response, Object handler, Exception ex)
throws Exception {
System.out.println("Response Rendering.....");
}
}
ds-servlet.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xs
d
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc.xsd">
<context:component-scan base-package="com.durgasoft.*"/>
<mvc:interceptors>
<!-- <bean name="processingTimeInterceptor"
class="com.durgasoft.app13.interceptors.ProcessingTimeIntercept
or"/>-->
<mvc:interceptor>
<mvc:mapping path="/wish"/>
<bean
class="com.durgasoft.app13.interceptors.ProcessingTimeIntercept
or"/>
</mvc:interceptor>
</mvc:interceptors>
<bean name="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceVie
wResolver">
<property name="prefix" value="/"/>
<property name="suffix" value=".jsp"/>
</bean>
</beans>
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="https://jakarta.ee/xml/ns/jakartaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://jakarta.ee/xml/ns/jakartaee
https://jakarta.ee/xml/ns/jakartaee/web-app_5_0.xsd"
version="5.0">
<servlet>
<servlet-name>ds</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServle
t</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>ds</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<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</modelVersion>
<groupId>com.durgasoft</groupId>
<artifactId>app13</artifactId>
<version>1.0-SNAPSHOT</version>
<name>app13</name>
<packaging>war</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncodi
ng>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>
<junit.version>5.9.2</junit.version>
</properties>
<dependencies>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>5.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>6.0.11</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency> </dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.3.2</version>
</plugin> </plugins>
</build>
</project>
To perform file uploading in Spring web mvc applications, Spring WEB MVC has
provided some predefined libraries in the form of CommonsMultipartResolver.
2. Prepare a Controller class to receive File data and to save File data in
the Server machine.
@Controller
public class UploadController{
@RequestMapping(value=”/upload”, method=RequestMethod.POST)
public ModelAndView uploadFiles(@RequestParam MultipartFile file){
String status = “”;
try{
String fileName = file.getOriginalFileName();
FileOutputStream fos = new FileOutputStream(“E:/uploads/”+fileName);
Byte[] btArray = file.getBytes():
fos.write(btArray);
Status = “SUCCESS”;
}catch(Exception e){
Status = “FAILURE”;
e.printStackTrace();
}
return new ModelAndView(“status”, “status”, status);
}
}
ds-servlet.xml
<beans>
<bean name=”multipartResolver”
class=”org.springframework…CommonsMultipartResolver”/>
—-----
</beans>
Note: For File Uploading Operations, Spring Framework uses Commons file
upload and commons io libraries, so we must provide them in the project
libraries.
EX:
index.jsp
<%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"
%>
<!DOCTYPE html>
<html>
<head>
<title>JSP - Hello World</title>
</head>
<body>
<jsp:forward page="upload"/>
</body>
</html>
uploadform.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 08-08-2023
Time: 06:41
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>File Upload Form</title>
</head>
<body>
<h2 style="color: red;" align="center">Durga Software Solutions</h2>
<h3 style="color: blue;" align="center">File Upload Form</h3>
<form method="POST" action="upload" enctype="multipart/form-data">
<table align="center">
<tr>
<td>File1</td>
<td><input type="file" name="file"></td>
</tr>
<tr>
<td>File2</td>
<td><input type="file" name="file"></td>
</tr>
<tr>
<td>File2</td>
<td><input type="file" name="file"></td>
</tr>
<tr>
<td><input type="submit" value="Upload"></td>
</tr>
</table>
</form>
</body>
</html>
status.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 08-08-2023
Time: 06:45
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>File Upload Status Page</title>
</head>
<body>
<h1 style="color: red;" align="center">File Upload Status
${status}</h1>
</body>
</html>
UploadController.java
package com.durgasoft.app14.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.multipart.MultipartFile;
import org.springframework.web.servlet.ModelAndView;
import java.io.FileOutputStream;
@Controller
public class UploadController {
@RequestMapping(value = "/upload", method = RequestMethod.GET)
public String showForm(){
return "uploadform";
}
@RequestMapping(value = "/upload", method = RequestMethod.POST)
public ModelAndView uploadFiles(@RequestParam MultipartFile[]
file){
String status = "";
try{
for (MultipartFile multipartFile : file){
String fileName = multipartFile.getOriginalFilename();
FileOutputStream fileOutputStream = new
FileOutputStream("E:/uploads/"+fileName);
byte[] btArray = multipartFile.getBytes();
fileOutputStream.write(btArray);
}
status = "SUCCESS";
}catch (Exception e){
status = "FAILURE";
e.printStackTrace();
}
return new ModelAndView("status", "status", status);
}
}
ds-servlet.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">
<context:component-scan base-package="com.durgasoft.*"/>
<bean name="multipartResolver"
class="org.springframework.web.multipart.commons.CommonsMultipartReso
lver"/>
<bean name="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResol
ver">
<property name="prefix" value="/"/>
<property name="suffix" value=".jsp"/>
</bean>
</beans>
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="https://jakarta.ee/xml/ns/jakartaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://jakarta.ee/xml/ns/jakartaee
https://jakarta.ee/xml/ns/jakartaee/web-app_5_0.xsd"
version="5.0">
<servlet>
<servlet-name>ds</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</ser
vlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>ds</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
File Downloading:
—-----------------
In General, in web applications, it is very frequent to perform file download
operations.
1. Prepare a form with the “Download” button with the downloadable Resource.
<form method=”post” action=”download”>
<img src=”E:/images/MyImage.jpg”/><br>
<input type=”submit” value=”Download”/>
</form>
EX:
index.jsp
<%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"
%>
<!DOCTYPE html>
<html>
<head>
<title>JSP - Hello World</title>
</head>
<body>
<jsp:forward page="download"/>
</body>
</html>
downloadform.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 09-08-2023
Time: 06:35
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Download Form</title>
</head>
<body>
<form method="post" action="download">
<table align="center">
<tr>
<td><img alt="newbatches.jpg"
src="E:/images/newbatches.jpg" width="300" height="300"/></td>
</tr>
<tr>
<td><input type="submit" value="Download"></td>
</tr>
</table>
</form>
</body>
</html>
DownloadCotroller.java
package com.durgasoft.app15;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import java.io.File;
import java.io.FileInputStream;
import java.io.OutputStream;
@Controller
public class DownloadController {
@RequestMapping( value = "/download",method = RequestMethod.GET)
public String showForm(){
return "downloadform";
}
@RequestMapping(value = "/download", method = RequestMethod.POST)
public void download(HttpServletRequest request,
HttpServletResponse response)throws Exception{
response.setContentType("APPLICATION/OCTET-STREAM");
File file = new File("E:/images/newbatches.jpg");
FileInputStream fileInputStream = new FileInputStream(file);
String fileName = file.getName();
response.setHeader("content-disposition","attachment;filename=\""+fil
eName+"\"");
OutputStream outputStream = response.getOutputStream();
int val = fileInputStream.read();
while (val != -1){
outputStream.write(val);
val = fileInputStream.read();
}
fileInputStream.close();
outputStream.close();
}
ds-servlet.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">
<context:component-scan base-package="com.durgasoft.*"/>
<bean name="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResol
ver">
<property name="prefix" value="/"/>
<property name="suffix" value=".jsp"/>
</bean>
</beans>
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="https://jakarta.ee/xml/ns/jakartaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://jakarta.ee/xml/ns/jakartaee
https://jakarta.ee/xml/ns/jakartaee/web-app_5_0.xsd"
version="5.0">
<servlet>
<servlet-name>ds</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</ser
vlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>ds</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<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</modelVersion>
<groupId>com.durgasoft</groupId>
<artifactId>app15</artifactId>
<version>1.0-SNAPSHOT</version>
<name>app15</name>
<packaging>war</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>
<junit.version>5.9.2</junit.version>
</properties>
<dependencies>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>5.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<!--
https://mvnrepository.com/artifact/org.springframework/spring-webmvc
-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>6.0.11</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.3.2</version>
</plugin> </plugins>
</build>
</project>
To create and manage all the above templates and to provide flow of execution
between the templates web pages we have to use Apache provided Tiles
Framework.
Apache Software Foundations has provided the complete tiles framework in the
form of the following jar files.
1. tiles-api-version.jar
2. tiles-core-version.jar
3. tiles-jsp-version.jar
4. tiles-servlet-version.jar
5. tiles-template-version.jar
Spring WEB MVC framework is providing inbuilt support for tiles framework in
order to prepare web applications.
If we want to use Tiles Framework in Spring Web MVC applications then we have
to use the following steps.
To prepare Template pages we have to use the following Tiles Tag library
which is available with the following URI.
<tiles:insertAttribute name=”--”/>
This tag can be used to define a logical name to the tile in Template.
Where “name” attribute will take logical name to the tile in Template.
header.jsp
<html>
<body>
<h1 style=”color: white;”>DURGA SOFTWARE SOLUTIONS<\h1>
</body>
</html>
menu.jsp
<html>
<body>
<h3>
<a href=”add”>Add Student</a><br>
<a href=”search”>Search Student</a><br>
<a href=”delete”>Delete Student</a>
</h3>
</body>
</html>
tiles-defs.xml
<!DOCTYPE…..>
<tiles-definitions>
<definition name=”welcomeDef” template=”/layout.jsp”>
<put-attribute name=”header” value=”/header.jsp”/>
<put-attribute name=”menu” value=”/menu.jsp”/>
<put-attribute name=”body” value=”/welcome.jsp”/>
<put-attribute name=”footer” value=”/footer.jsp”/>
</definition>
<definition name=”addDef” extends=”welcomeDef”>
<put-attribute name=”body” value=”/addform.jsp”/>
</definition>
<definition name=”searchDef” extends=”welcomeDef”>
<put-attribute name=”body” value=”/searchform.jsp”/>
</definition>
<definition name=”deleteDef” extends=”welcomeDef”>
<put-attribute name=”body” value=”/deleteform.jsp”/>
</definition>
—-----
</tiles-definitions>
EX:
@Controller
public class StudentController{
@RequestMapping(value=”/welcome”, method=RequestMethod.GET)
public String welcome(){
return “welcomeDef”;
}
@RequestMapping(value=”/add” method=RequestMethod.GET)
public ModelAndView addStudent(){
return new ModelAndView(“addDef”, “student”, new Student());
}
—-----
—----
<beans>
—---
<bean id=”viewResolver” class=”org……UrlBasedViewResolver>
<property name=”viewClass”>
<value>org.springframework…..TilesView
</property>
</bean>
<bean id=”tilesConfigurer” class=”org…..TilesConfigurer”>
<property name=”definitions”>
<list>
<value>/WEB-INF/tiles-def.xml</value>
</list>
</property>
</bean>
—---
</beans>
EX:
—---
index.jsp
<%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"
%>
<!DOCTYPE html>
<html>
<head>
<title>Index Page</title>
</head>
<body>
<jsp:forward page="welcome"/>
</body>
</html>
layout.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 12-08-2023
Time: 07:08
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ taglib uri="http://tiles.apache.org/tags-tiles" prefix="tiles"%>
<html>
<head>
<title>Layout Page</title>
</head>
<body>
<table width="100%" height="100%">
<tr height="20%">
<td colspan="2" align="center" bgcolor="maroon">
<tiles:insertAttribute name="header"/>
</td>
</tr>
<tr height="65%">
<td width="20%" bgcolor="aqua">
<tiles:insertAttribute name="menu"/>
</td>
<td width="80%" bgcolor="#FFD9B7">
<tiles:insertAttribute name="body"/>
</td>
</tr>
<tr height="15%" align="center">
<td colspan="2" bgcolor="blue">
<tiles:insertAttribute name="footer"/>
</td>
</tr>
</table>
</body>
</html>
header.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 12-08-2023
Time: 07:18
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Header Page</title>
</head>
<body>
<h1 style="color: white;" align="center">DURGA SOFTWARE
SOLUTIONS</h1>
</body>
</html>
menu.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 12-08-2023
Time: 07:21
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Menu Page</title>
</head>
<body>
<br><br><br>
<h3>
<a href="add">ADD Student</a><br><br>
<a href="search">SEARCH Student</a><br><br>
<a href="delete">DELETE Student</a>
</h3>
</body>
</html>
welcome.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 12-08-2023
Time: 07:23
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Welcome Page</title>
</head>
<body>
<h2 style="color: #241468;" align="center">
<marquee>
Welcome to Durga Software Solutions
</marquee>
</h2>
</body>
</html>
footer.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 12-08-2023
Time: 07:24
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Footer Page</title>
</head>
<body>
<h3 style="color: white" align="center">
Durga Software Solutions, 202, HMDA, Mitrivanam, Ameerpet,
Hyderabad-38
</h3>
</body>
</html>
addstudent.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 13-08-2023
Time: 06:41
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ taglib uri="http://www.springframework.org/tags/form"
prefix="form"%>
<html>
<head>
<title>Student Add Form</title>
</head>
<body>
<br><br>
<form:form method="post" action="add" modelAttribute="student">
<table align="center">
<tr>
<td>Student Id</td>
<td><form:input path="sid"/></td>
</tr>
<tr>
<td>Student Name</td>
<td><form:input path="sname"/></td>
</tr>
<tr>
<td>Student Address</td>
<td><form:input path="saddr"/></td>
</tr>
<tr>
<td><input type="submit" value="ADD"/></td>
</tr>
</table>
</form:form>
</body>
</html>
searchstudent.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 13-08-2023
Time: 06:45
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ taglib uri="http://www.springframework.org/tags/form"
prefix="form"%>
<html>
<head>
<title>Student Search Form</title>
</head>
<body>
<br><br>
<form:form method="post" action="search" modelAttribute="student">
<table align="center">
<tr>
<td>Student Id</td>
<td><form:input path="sid"/></td>
</tr>
<tr>
<td><input type="submit" value="SEARCH"></td>
</tr>
</table>
</form:form>
</body>
</html>
deletestudent.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 13-08-2023
Time: 06:45
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ taglib uri="http://www.springframework.org/tags/form"
prefix="form"%>
<html>
<head>
<title>Student Delete Form</title>
</head>
<body>
<br><br>
<form:form method="post" action="delete" modelAttribute="student">
<table align="center">
<tr>
<td>Student Id</td>
<td><form:input path="sid"/></td>
</tr>
<tr>
<td><input type="submit" value="DELETE"></td>
</tr>
</table>
</form:form>
</body>
</html>
status.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 13-08-2023
Time: 07:33
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Student Status Page</title>
</head>
<body>
<br><br>
<h1 style="color: deeppink" align="center">${status}</h1>
</body>
</html>
studentdetails.jsp
<%--
Created by IntelliJ IDEA.
User: Nagoor
Date: 13-08-2023
Time: 07:35
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Student Details Page</title>
</head>
<body>
<br><br>
<table align="center" border="1">
<tr>
<td>Student Id</td>
<td>${student.sid}</td>
</tr>
<tr>
<td>Student Name</td>
<td>${student.sname}</td>
</tr>
<tr>
<td>Student Address</td>
<td>${student.saddr}</td>
</tr>
</table>
</body>
</html>
Student.java
package com.durgasoft.app16.beans;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
StudentController.java
package com.durgasoft.app16.controller;
import com.durgasoft.app16.beans.Student;
import com.durgasoft.app16.service.StudentService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.servlet.ModelAndView;
@Controller
public class StudentController {
@Autowired
private StudentService studentService;
StudentService.java
package com.durgasoft.app16.service;
import com.durgasoft.app16.beans.Student;
StudentServiceImpl.java
package com.durgasoft.app16.service;
import com.durgasoft.app16.beans.Student;
import com.durgasoft.app16.dao.StudentDao;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
public class StudentServiceImpl implements StudentService{
@Autowired
private StudentDao studentDao;
@Override
public String addStudent(Student student) {
String status = studentDao.add(student);
return status;
}
@Override
public Student searchStudent(String sid) {
Student student = studentDao.search(sid);
return student;
}
@Override
public String deleteStudent(String sid) {
String status = studentDao.delete(sid);
return status;
}
}
StudentDao.java
package com.durgasoft.app16.dao;
import com.durgasoft.app16.beans.Student;
StudentDaoImpl.java
package com.durgasoft.app16.dao;
import com.durgasoft.app16.beans.Student;
import org.springframework.stereotype.Repository;
import org.springframework.transaction.annotation.Transactional;
import javax.persistence.EntityManager;
import javax.persistence.PersistenceContext;
@Repository
public class StudentDaoImpl implements StudentDao{
@PersistenceContext
private EntityManager entityManager;
@Transactional
@Override
public String add(Student student) {
String status = "";
Student std = search(student.getSid());
if(std == null){
entityManager.persist(student);
status = "Student Inserted Successfully";
}else{
status = "Student Existed Already";
}
return status;
}
@Override
public Student search(String sid) {
Student student = null;
student = entityManager.find(Student.class,sid);
return student;
}
@Transactional
@Override
public String delete(String sid) {
String status = "";
Student student = entityManager.find(Student.class, sid);
if(student == null){
status = "Student Does Not Exist";
}else{
entityManager.remove(student);
status = "Student Deleted Successfully";
}
return status;
}
}
Student.xml
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
<hibernate-mapping>
<class name="com.durgasoft.app16.beans.Student" table="student">
<id name="sid"/>
<property name="sname"/>
<property name="saddr"/>
</class>
</hibernate-mapping>
tiles-defs.xml
<!DOCTYPE tiles-definitions PUBLIC "-//Apache Software
Foundation//DTD Tiles Configuration 3.0//EN"
"http://tiles.apache.org/dtds/tiles-config_3_0.dtd">
<tiles-definitions>
<definition name="welcomeDef" template="/layout.jsp">
<put-attribute name="header" value="/header.jsp"/>
<put-attribute name="menu" value="/menu.jsp"/>
<put-attribute name="body" value="/welcome.jsp"/>
<put-attribute name="footer" value="/footer.jsp"/>
</definition>
<definition name="addDef" extends="welcomeDef">
<put-attribute name="body" value="/addstudent.jsp"/>
</definition>
<definition name="searchDef" extends="welcomeDef">
<put-attribute name="body" value="/searchstudent.jsp"/>
</definition>
<definition name="deleteDef" extends="welcomeDef">
<put-attribute name="body" value="/deletestudent.jsp"/>
</definition>
<definition name="statusDef" extends="welcomeDef">
<put-attribute name="body" value="/status.jsp"/>
</definition>
<definition name="studentDetailsDef" extends="welcomeDef">
<put-attribute name="body" value="/studentdetails.jsp"/>
</definition>
</tiles-definitions>
ds-servlet.xml
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">
<context:component-scan base-package="com.durgasoft.*"/>
<tx:annotation-driven/>
<bean name="tilesConfigurer"
class="org.springframework.web.servlet.view.tiles3.TilesConfigurer">
<property name="definitions">
<list>
<value>/WEB-INF/tiles-defs.xml</value>
</list>
</property>
</bean>
<bean name="viewResolver"
class="org.springframework.web.servlet.view.UrlBasedViewResolver">
<property name="viewClass">
<value>org.springframework.web.servlet.view.tiles3.TilesView</value>
</property>
</bean>
<bean name="dataSource"
class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName"
value="com.mysql.cj.jdbc.Driver"/>
<property name="url"
value="jdbc:mysql://localhost:3300/durgadb"/>
<property name="username" value="root"/>
<property name="password" value="root"/>
</bean>
<bean name="entityManagerFactoryBean"
class="org.springframework.orm.jpa.LocalContainerEntityManagerFactory
Bean">
<property name="dataSource" ref="dataSource"/>
<property name="persistenceUnitName" value="std"/>
<property name="jpaVendorAdapter">
<bean
class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter"/
>
</property>
<property name="mappingResources">
<list>
<value>Student.xml</value>
</list>
</property>
<property name="jpaProperties">
<props>
<prop
key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
<prop key="hibernate.show_sql">true</prop>
</props>
</property>
</bean>
<bean name="transactionManager"
class="org.springframework.orm.jpa.JpaTransactionManager">
<property name="entityManagerFactory"
ref="entityManagerFactoryBean"/>
</bean>
</beans>
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="https://jakarta.ee/xml/ns/jakartaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://jakarta.ee/xml/ns/jakartaee
https://jakarta.ee/xml/ns/jakartaee/web-app_5_0.xsd"
version="5.0">
<servlet>
<servlet-name>ds</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</ser
vlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>ds</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>