Spring boot使用Thymeleaf模板引擎实现用户信息添加
一、项目结构
1.创建一个Spring boot项目,在Src下添加两个包,分别为com.example.demo.user和com.example.demo.controller。
注意:这里的com.example.demo.XXX前面的前缀要一致,否则启动类加载不到包名(博主自己吃的亏)。
2.在src/main/resource下添加静态资源,并且添加三个html页面List.html,List2.html,Map.html,因为Thymeleaf模板只可以将渲染的数据反映在html上。
3.还要在application.properties中填加自定义的port端口,(不修改也可以默认为8080)。
想要修改就是server.port=XXX //XXX为没有被占用的端口。
二、项目内容
使用Spring boot集成好的Thymeleaf模板引擎,快速开发一个demo,实现用户信息的注入,分别用Map,List来临时存储。
三、Controller控制类的编写
package com.example.demo.controller;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;
import com.example.demo.user.User;
@Controller
@RequestMapping("/MakeThymeleaf")
public class controller
{
@GetMapping("/List")
public ModelAndView list() {
List<Object> list = new ArrayList<Object>();
list.add("北京");
list.add("上海");
list.add("深圳");
ModelAndView modelAndView = new ModelAndView("List");
modelAndView.addObject("list", list);
return modelAndView;
}
@GetMapping("/Map")
public ModelAndView userinfo()
{
Map<String, String> map= new HashMap<String, String