com.apress.progwt.server.web.controllers.SearchController.java Source code

Java tutorial

Introduction

Here is the source code for com.apress.progwt.server.web.controllers.SearchController.java

Source

/*
 * Copyright 2008 Jeff Dwyer
 * 
 * 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 com.apress.progwt.server.web.controllers;

import javax.servlet.http.HttpServletRequest;

import org.apache.log4j.Logger;
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.bind.annotation.RequestParam;

import com.apress.progwt.client.domain.dto.SearchResult;
import com.apress.progwt.client.exception.SiteException;
import com.apress.progwt.server.service.SearchService;
import com.apress.progwt.server.service.UserService;
import com.apress.progwt.server.web.domain.SearchCommand;

@Controller
@RequestMapping("/search.html")
public class SearchController {
    private static final Logger log = Logger.getLogger(SearchController.class);

    @Autowired
    private SearchService searchService;

    @Autowired
    private UserService userService;

    @RequestMapping(method = RequestMethod.GET)
    public ModelMap searchHandler(HttpServletRequest req,
            @RequestParam(value = "searchString", required = false) String searchString,
            @RequestParam(value = "message", required = false) String message) throws SiteException {

        ModelMap rtn = ControllerUtil.getModelMap(req, userService);

        rtn.addAttribute("message", message);
        addResults(rtn, new SearchCommand(searchString));

        return rtn;
    }

    private void addResults(ModelMap rtn, SearchCommand command) throws SiteException {

        SearchResult result = searchService.search(command.getSearchString());

        System.out.println("got search " + result);

        rtn.addAttribute("searchResult", result);
        rtn.addAttribute("command", command);
    }

    @RequestMapping(method = RequestMethod.POST)
    public ModelMap searchHandler(HttpServletRequest req, @ModelAttribute("command") SearchCommand command)
            throws SiteException {

        ModelMap myModel = ControllerUtil.getModelMap(req, userService);

        addResults(myModel, command);

        return myModel;
    }

    public void setSearchService(SearchService searchService) {
        this.searchService = searchService;
    }

    public void setUserService(UserService userService) {
        this.userService = userService;
    }

}