ParameterizableViewController

Learn how to create example of ParameterizableViewController.

ParameterizableViewController

ParameterizableViewController example

     

ParameterizableViewController example in Spring 2.5 Web MVC framework.

This controller is use to redirect the page in the Spring 2.5 Web MVC applications. This controller doesn't  require controller class. This controller provides an alternative to sending a request straight to a view such as a JSP. we will configure just declared the ParameterizableViewController bean and set the view name through the "viewName" property.

Now we will used ParameterizedViewController  for control the behavior of the application.

Step 1:

Now we will create a index.jsp that will have a hyperlink that linked with the parameterizableviewcontroller.html. If user click on this link the request will generate for the parameterizableviewcontroller.html. The code of the index.html is:

<%@page contentType="text/html" pageEncoding="UTF-8"%>

<a href="parameterizableviewcontroller.html">ParameterizableViewController Example</a>

Step 2:

Now we will configure the DispatcherServlet in the web.xml. The DispatcherServlet will be configure to process all the request that have ending with .html. In this web.xml we will also define how to use spring.tld for the Spring 2.5 Web MVC application. Here is the code of the web.xml

<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3
//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd">

<web-app>

<servlet>

<servlet-name>dispatcher</servlet-name>

<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>

<load-on-startup>1</load-on-startup>

</servlet>

<servlet-mapping>

<servlet-name>dispatcher</servlet-name>

<url-pattern>*.html</url-pattern>

</servlet-mapping>

<welcome-file-list>

<welcome-file>index.jsp</welcome-file>

</welcome-file-list>

<taglib>

<taglib-uri>/spring</taglib-uri>

<taglib-location>/WEB-INF/spring.tld</taglib-location>

</taglib>

</web-app>

 Step 3: 0

Now we will create a xml file inside the project WEB-INF folder with dispatcher-servlet.xml name. This is the main configuration file for the Spring web application. In this file all request will configure with the particular controller by beans setting and urlMapping defined in it. The code of the dispatcher-servlet.xml is:

<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns="http://www.springframework.org/schema/beans" 1

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-2.5.xsd"> 2

<bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">

<property name="mappings">

<props> 3

<prop key="/parameterizableviewcontroller.html">parameterizableController</prop>

</props>

</property> 4

</bean>

<bean name="parameterizableController"

class="org.springframework.web.servlet.mvc.ParameterizableViewController"> 5

<property name="viewName" value="ParameterizableController" />

</bean>

<bean id="viewResolver" 6

class="org.springframework.web.servlet.view.InternalResourceViewResolver" >

<property name="prefix">

<value>/WEB-INF/jsp/</value> 7

</property>

<property name="suffix">

<value>.jsp</value> 8

</property>

</bean>

</beans> 9

If  the parameterizableviewcontroller.html request will occurred then dispatcher-servlet.xml will provide the controller for control this request that's name parameterizableController. But parameterizableController is derived by ParameterizableViewController that redirect the page by using viewName property. 

  Step 4:

Now we will create ParameterizableController.jsp page that is display as a user interface after redirect page by the ParameterizableViewController. The code of the ParameterizableController.jsp is: 0

<html>

<body>

<h4>ParameterizableViewController Example.<br/> No controller class required for
this controller
</h4> 1

</body>

</html>

Step 5: 2

Now we will run this application and see the output like:

Now click on this link and see, the application will display like: 3

Download Code

Download this code 4