2019-05-24から1日間の記事一覧

Spring 04

・Buttonで画面の遷移 @Controller public class NewController { @RequestMapping("/") public ModelAndView index (ModelAndView mav){ mav.setViewName("index"); return mav; } @RequestMapping("/other") public String other (){ return "redirect:/";…