SpringBoot 数据处理

在 thymeleaf 之中提供有相应的集合的处理方法,例如:在使用 List 集合的时候可以考虑采用 get()方法

获取指定索引的数据,那么在使用 Set 集合的时候会考虑使用 contains()来判断某个数据是否存在,使用

 Map 集合的时候也希望可以使用 containsKey()判断某个 key 是否存在,以及使用get()根据 key 获取

对应的 value,而这些功能在之前并不具备,下面来观察如何在页面中使用此类操作

1、通过Map集合获取信息:

member_map.html




	SpringBoot模板渲染
	
	


	

http://localhost/member/map true




	SpringBoot模板渲染
	
	


	

http://localhost/member/map Member2 [mid=107, name=赵四 - 6, age=9, birthday=Mon Mar 04 16:51:10 CST 2019, salary=99999.99]

2、判断某个数据是否存在:

建立一个控制器的方法,该方法返回一个Set集合的内容

    @RequestMapping(value = "/member/set", method = RequestMethod.GET)
    public String set(Model model) {
        Set allNames = new HashSet() ;
        List allIds = new ArrayList() ;
        for (int x = 0 ; x < 5 ; x ++) {
            allNames.add("boot-" + x) ;
            allIds.add(x) ;
        }
        model.addAttribute("names", allNames) ;
        model.addAttribute("ids", allIds) ;
        model.addAttribute("mydate", new java.util.Date()) ;
        return "member/member_set" ;
    }

数据处理

member_set.html




	SpringBoot模板渲染
	
	


	

http://localhost/member/set true

member_set.html




	SpringBoot模板渲染
	
	


	

http://localhost/member/set true false

member_set.html




	SpringBoot模板渲染
	
	


    




2019-03-04 2019-03-04 17:01:54.702 www$baidu$cn WWW.BAIDU.CN www.baidu.cn true false 5 true 1 boot-3

3、如果说这个时候所返回的集合不是Set集合,而是List集合,只需要将"#sets"更换为"#lists"即可.

建立一个控制器:

    @RequestMapping(value = "/member/set", method = RequestMethod.GET)
    public String set(Model model) {
        List allNames = new ArrayList() ;
        List allIds = new ArrayList() ;
        for (int x = 0 ; x < 5 ; x ++) {
            allNames.add("boot-" + x) ;
            allIds.add(x) ;
        }
        model.addAttribute("names", allNames) ;
        model.addAttribute("ids", allIds) ;
        model.addAttribute("mydate", new java.util.Date()) ;
        return "member/member_set" ;
    }

member_set.html




	SpringBoot模板渲染
	
	


    


http://localhost/member/set true false 5 true

如果真进行了集合类型的修改实际上发现所进行的页面操作也同样保持不变. 而且可以发现在页面之中都可以

根据索引取得的, 而不关心你是Set集合还是List集合:




	SpringBoot模板渲染
	
	


    

http://localhost/member/set 1 boot-1

4、在进行数据处理的时候字符串数据也是一种常见类型,所以在thymeleaf之中也支持有字符串的处理操作




	SpringBoot模板渲染
	
	


    

http://localhost/member/set www$baidu$cn WWW.BAIDU.CN www.baidu.cn

5、日期格式化:

    @RequestMapping(value = "/member/set", method = RequestMethod.GET)
    public String set(Model model) {
        List allNames = new ArrayList() ;
        List allIds = new ArrayList() ;
        for (int x = 0 ; x < 5 ; x ++) {
            allNames.add("boot-" + x) ;
            allIds.add(x) ;
        }
        model.addAttribute("names", allNames) ;
        model.addAttribute("ids", allIds) ;
        model.addAttribute("mydate", new java.util.Date()) ;
        return "member/member_set" ;
    }

member_set.html




	SpringBoot模板渲染
	
	


    

可以发现模板的页面设计真的要比传统的JSP强大许多的.

 

你可能感兴趣的:(SpringBoot 数据处理)