Package com.techempower.spring.domain

Examples of com.techempower.spring.domain.Fortune


    private FortuneRepository fortuneRepository;

    @RequestMapping(value = "/fortunes")
    String fortunes(ModelMap modelMap) {
        List<Fortune> fortunes = this.fortuneRepository.findAll();
        fortunes.add(new Fortune(0, "Additional fortune added at request time."));
        Collections.sort(fortunes);

        modelMap.addAttribute("fortunes", fortunes);
        return "fortunes";
    }
View Full Code Here

TOP

Related Classes of com.techempower.spring.domain.Fortune

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.