Package org.springframework.data.mongodb.examples.custsvc.domain

Examples of org.springframework.data.mongodb.examples.custsvc.domain.Survey


    CustomerRepository customerRepository;

    @RequestMapping(method = RequestMethod.GET)
    public String setupForm(@PathVariable Long id, Model model) {
        Customer customer = customerRepository.findOne(id);
        Survey survey = new Survey();
        model.addAttribute("customer", customer);
        model.addAttribute("survey", survey);
        return "customer/viewCustomerForm";
    }
View Full Code Here

TOP

Related Classes of org.springframework.data.mongodb.examples.custsvc.domain.Survey

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.