1. 程式人生 > >模板配置

模板配置

model mod 模板 ota import pan 哈哈哈 attribute index

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
public class ViewController {
    @RequestMapping("/page")
    public String getPage(Model model){
        model.addAttribute ("name"
,"哈哈哈"); return "index"; } }

hhhhhhhhhh ${name}

模板配置