package net.unit8.waitt.example.controller;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import java.util.Date;
/**
* @author kawasima
*/
@Controller
public class IndexController {
@RequestMapping("/")
public String index(Model model) {
model.addAttribute("now", new Date());
return "index";
}
}