Biblioteca Java - Rev 14

Subversion Repositories:
Rev:
package hm.spring.web.controller;

import hm.spring.web.dao.StudentDAO;
import hm.spring.web.dao.StudentJDBCTemplate;
import hm.spring.web.domain.Student;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
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.servlet.ModelAndView;


@Controller
public class StudentController {
       
       
        @Autowired
        StudentDAO studentJDBCTemplate;
       
           @RequestMapping(value = "/student", method = RequestMethod.GET)
           public ModelAndView student() {
              return new ModelAndView("student", "command", new Student());
           }
           
           @RequestMapping(value = "/addStudent", method = RequestMethod.POST)
           public String addStudent(@ModelAttribute("SpringWeb")Student student,
           ModelMap model) {
              model.addAttribute("name", student.getName());
              model.addAttribute("age", student.getAge());
              model.addAttribute("id", student.getId());
             
              studentJDBCTemplate.create(student.getName(), student.getAge());
             
              return "result";
           }
        }