org.parancoe.web.test.MockController.java Source code

Java tutorial

Introduction

Here is the source code for org.parancoe.web.test.MockController.java

Source

/**
 * Copyright (C) 2006-2010 The Parancoe Team <info@parancoe.org>
 *
 * This file is part of Parancoe Web.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *  http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
// Copyright 2008 The Parancoe Team
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package org.parancoe.web.test;

import javax.validation.Valid;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
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.RequestParam;
import org.springframework.web.bind.annotation.SessionAttributes;
import org.springframework.web.bind.support.SessionStatus;

@Controller
@RequestMapping("/test/controller.form")
@SessionAttributes("something")
public class MockController {

    @RequestMapping(method = RequestMethod.GET)
    public String form(@RequestParam("value") String value, Model model) {
        MockModel tcm = new MockModel(value);
        model.addAttribute("something", tcm);
        return "test/form";
    }

    @RequestMapping(method = RequestMethod.POST)
    public String submit(@ModelAttribute("something") @Valid MockModel tcm, BindingResult result,
            SessionStatus status) {
        if (result.hasErrors()) {
            return "test/form";
        }
        // doing what you need with tcm and the other parameters
        status.setComplete();
        return "redirect:/test/done.html";
    }
}