实习笔记之Spring MVC(二)

来源:互联网 发布:阿里云国际注册 编辑:程序博客网 时间:2024/05/17 05:39

网上看到的一个很好的例子。发出来Mark一下。

Its always been fun for me to work with Ajax! Is not it ? I will make it easy for you  to use Ajax with Spring MVC 3 and JQuery. This post will illustrate you how to use Ajax in real life practices of industrial coding. As usual, we will take an practical example of Ajax in Spring MVC 3 framework and will implement it and I will make the implementation easy by make you understand the topic.


Let us see what is our example’s requirement and how Spring MVC 3 Ajax facility will fulfill it :

In our example, we will make a list of students with name and highest education level, to send the list to the placement office so that the students can get chance. We will make the “Add Student Form” available to the student online so that they can submit their name online and get registered. As a lot of students will use the system, so the performance of the system may very much low. To increase to performance of the web application we will use Ajax with Spring MVC 3 Framework and JQuery.

 

Following steps we have to go through to implement our example :

  1. First of all, we will create a domain class (User.java) that will hold the value of student information.
  2. After that we will create our controller class (UserListController.java) to handle HTTP request. Our controller will handle three types of requests. First, to show the “Add Student Form”, second to handle Ajax request came from “Add Student Form” and add the students to a list, third to show the student information as a list.
  3. Then, we will create jsp page  (AddUser.jsp) to show “Add Student Form” that will use JQuery to send Ajax request to the Spring MVC Controller. The jsp will also confirm to the user that Student has been added to the list.
  4. Then, we will create a jsp (ShowUsers.jsp) that will list all users in the list.


 

User.java

User.java has two properties name and education to store the student information. Following is the code of User.java :


 

package com.raistudies.domain;


public class User {


    private String name = null;

    private String education = null;

    // Getter and Setter are omitted for making the code short

}

 

 

 

Controllers has three method to handle three request urls. “showForm” method handle the request for showing the form to the user. Bellow code shows the UserListController.java :


package com.raistudies.controllers;


import java.util.ArrayList;

import java.util.List;


import org.springframework.stereotype.Controller;

import org.springframework.ui.ModelMap;

import org.springframework.validation.BindingResult;

import org.springframework.web.bind.annotation.ModelAttribute;

import org.springframework.web.bind.annotation.RequestMapping;

import org.springframework.web.bind.annotation.RequestMethod;

import org.springframework.web.bind.annotation.ResponseBody;


import com.raistudies.domain.User;


@Controller

public class UserListController {

    private List<User> userList = new ArrayList<User>();


    @RequestMapping(value="/AddUser.htm",method=RequestMethod.GET)

    public String showForm(){

        return "AddUser";

    }


    @RequestMapping(value="/AddUser.htm",method=RequestMethod.POST)

    public @ResponseBody String addUser(@ModelAttribute(value="user") User user, BindingResult result ){

        String returnText;

        if(!result.hasErrors()){

            userList.add(user);

            returnText = "User has been added to the list. Total number of users are " + userList.size();

        }else{

            returnText = "Sorry, an error has occur. User has not been added to list.";

        }

        return returnText;

    }


    @RequestMapping(value="/ShowUsers.htm")

    public String showUsers(ModelMap model){

        model.addAttribute("Users", userList);

        return "ShowUsers";

    }

}

 

AddUser.jsp“addUsers” is same as the controller method that handle form expect that it also contain annotation@ResponseBody, which tells Spring MVC that the String returned by the method is the response to the request, it does not have to find view for this string. So the retuning String will be send back to the browser as response and hence the Ajax request will work. “showUsers” method is used to show the list of the students to the user.

AddUser.jsp contain a simple form to collect information about the student and uses JQerey JavaScript framework to generate Ajax request to the server. Following is the code in AddUser.jsp :

 

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"

pageEncoding="ISO-8859-1"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>

    <head>

        <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">

        <title>Add Users using ajax</title>

        <script src="/AjaxWithSpringMVC2Annotations/js/jquery.js"></script>

        <script type="text/javascript">

        function doAjaxPost() {

        // get the form values

        var name = $('#name').val();

        var education = $('#education').val();


        $.ajax({

        type: "POST",

        url: "/AjaxWithSpringMVC2Annotations/AddUser.htm",

        data: "name=" + name + "&education=" + education,

        success: function(response){

        // we have the response

        $('#info').html(response);

        $('#name').val('');

        $('#education').val('');

        },

        error: function(e){

        alert('Error: ' + e);

        }

        });

        }

        </script>

    </head>

    <body>

        <h1>Add Users using Ajax ........</h1>

        <table>

            <tr><td>Enter your name : </td><td> <input type="text" id="name"><br/></td></tr>

            <tr><td>Education : </td><td> <input type="text" id="education"><br/></td></tr>

            <tr><td colspan="2"><input type="button" value="Add Users" onclick="doAjaxPost()"><br/></td></tr>

            <tr><td colspan="2"><div id="info" style="color: green;"></div></td></tr>

        </table>

        <a href="/AjaxWithSpringMVC2Annotations/ShowUsers.htm">Show All Users</a>

    </body>

</html>



ShowUsers.jsp

Following are the code in ShowUsers.jsp to print all student information from a ArrayList to jsp page :

 


<%@ page language="java" contentType="text/html; charset=ISO-8859-1"

pageEncoding="ISO-8859-1"%>

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>

    <head>

        <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">

        <title>Users Added using Ajax</title>

    </head>

    <body style="color: green;">

    The following are the users added in the list :<br>

        <ul>

            <c:forEach items="${Users}" var="user">

                <li>Name : <c:out value="${user.name}" />; Education : <c:out value="${user.education}"/>

            </c:forEach>

        </ul>

    </body>

</html>

Here, we have used JSTL core taglib to iterate through the ArrayList and show every value in browser.
  • <c:forEach items=”${Users}” var=”user”> : tag is used for iterate through the ArrayList. Property “items” is used to define the bean on which the List object has been stored, soitems=”${Users}” says that the users list is present in “Users” bean. “var” attribute says the name of the variable in which each user will be stored.
  • <c:out value=”${user.name}” /> : As, a single user will be stored in variable name “user” so to print the name property in User object we use ${user.name}.

app-config.xml
Our Spring MVC configuration file should be able to handle annotation driven controllers. The configuration are as follows :

 


<?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"

xmlns:mvc="http://www.springframework.org/schema/mvc"

xsi:schemaLocation="

http://www.springframework.org/schema/beans� �  � http://www.springframework.org/schema/beans/spring-beans-3.0.xsd

http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd

http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">


    <!-- Scans the classpath of this application for @Components to deploy as beans -->

    <context:component-scan base-package="com.raistudies" />


    <!-- Configures the @Controller programming model -->

    <mvc:annotation-driven />


    <!-- Resolves view names to protected .jsp resources within the /WEB-INF/views directory -->

    <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">

        <property name="prefix" value="/WEB-INF/jsp/"/>

        <property name="suffix" value=".jsp"/>

    </bean>


</beans>